Small project focusing on the feature of adding, retrieving and removind products from a user's wishlist
GET /wishlist/products?userId=e9a2507d-0c3e-477c-ac2f-b738bcd5ff89| Param | Type | Description |
|---|---|---|
userId |
UUID |
Required. User Id |
GET /wishlist?userId=e9a2507d-0c3e-477c-ac2f-b738bcd5ff89| Param | Type | Description |
|---|---|---|
userId |
UUID |
Required. User Id |
GET /wishlist?userId=e9a2507d-0c3e-477c-ac2f-b738bcd5ff89&productId=9ebdbaf3-3ca3-4eef-9bab-5caa83652240| Param | Type | Description |
|---|---|---|
userId |
UUID |
Required. User Id |
productId |
UUID |
Required. Product Id |
POST /wishlist/products{
"userId": "e9a2507d-0c3e-477c-ac2f-b738bcd5ff89",
"productId": "9ebdbaf3-3ca3-4eef-9bab-5caa83652240"
}
DELETE /wishlist/products{
"userId": "e9a2507d-0c3e-477c-ac2f-b738bcd5ff89",
"productId": "9ebdbaf3-3ca3-4eef-9bab-5caa83652240"
}