Skip to main content
POST
/
shops
/
{shopId}
/
customers
/
{userId}
/
wishlist
Add Product to Wishlist
curl --request POST \
  --url http://staging.qshop.ng/apiv2/shops/{shopId}/customers/{userId}/wishlist \
  --header 'Content-Type: application/json' \
  --data '
{
  "product": "<string>"
}
'
{
  "msg": "<string>",
  "data": {
    "_id": "<string>",
    "product": "<string>",
    "shop": "<string>",
    "user": "<string>",
    "variant": "<unknown>",
    "__v": 123,
    "created": "<string>",
    "profile": "<string>"
  },
  "success": true
}

Body

application/json
product
string
required

Response

200 - application/json
msg
string
required
data
object
required
success
boolean
required