Skip to main content
GET
/
store
/
customer-access-center
/
wishlist
Get all the wishlisted products
curl --request GET \
  --url https://services.leadconnectorhq.com/store/customer-access-center/wishlist \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 400,
  "message": "Bad Request"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
number
default:0

The maximum number of items to be included in a single page of results

Example:

20

offset
number
default:0

The starting index of the page, indicating the position from which the results should be retrieved.

Example:

0

Response

Successful response

Last modified on March 4, 2026