Skip to main content
POST
/
store
/
customer-access-center
/
wishlist
/
status
Get Wishlist Status
curl --request POST \
  --url https://services.leadconnectorhq.com/store/customer-access-center/wishlist/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "altId": "6578278e879ad2646715ba9c",
  "altType": "location",
  "productIds": [
    "5e8c3f5a812e52f9bd6ec577",
    "6578cead787ad8fce8adbdc8a8e8"
  ],
  "storeId": "3SwdhCu3svxI8AKsPJt6",
  "contactId": "3SwdhCu3svxI8AKsPJt6"
}
'
{
  "products": [
    "5e8c3f5a812e52f9bd6ec577",
    "6578cead787ad8fce8adbdc8a8e8"
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
altId
string
required

Location Id or Agency Id

Example:

"6578278e879ad2646715ba9c"

altType
enum<string>
required
Available options:
location
productIds
string[]
required

Array of product IDs

Example:
[
"5e8c3f5a812e52f9bd6ec577",
"6578cead787ad8fce8adbdc8a8e8"
]
storeId
string
required

Store Id

Example:

"3SwdhCu3svxI8AKsPJt6"

contactId
string
required

Contact id for which wishlist is required

Example:

"3SwdhCu3svxI8AKsPJt6"

Response

Successful response

products
string[]
required

Array of product IDs

Example:
[
"5e8c3f5a812e52f9bd6ec577",
"6578cead787ad8fce8adbdc8a8e8"
]
Last modified on March 4, 2026