Skip to main content
POST
/
store
/
customer-access-center
/
wishlist
/
{productId}
Add product from wishlist
curl --request POST \
  --url https://services.leadconnectorhq.com/store/customer-access-center/wishlist/{productId} \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Successfully created"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

productId
string
required

Product Id

Example:

"5e8c3f5a812e52f9bd6ec577"

Response

Successful response

status
boolean
required

Status of api action

Example:

true

message
string

Success message

Example:

"Successfully created"

Last modified on March 4, 2026