WishlistsId
Get Wishlist
Get the current wishlist for a wishlist GUID. Allows Anonymous.
GET
/v1/customers/wishlists/{id}
AuthorizationBasic <token>
Basic Authorization header using the Bearer scheme.
In: header
Authorization<token>
JWT Authorization header using the Bearer scheme.
In: header
Path Parameters
idstring
Query Parameters
currency?string
Response Body
curl -X GET "https://loading/v1/customers/wishlists/string?currency=string"
{
"items": [
{
"productId": 0,
"productCode": "string",
"title": "string",
"itemPrice": 0.1,
"rrp": 0.1,
"fullPrice": 0.1,
"productUrl": "string",
"sale": true,
"imageUrl": "string"
}
]
}
{
"message": "string",
"code": 0
}
{
"succeeded": true,
"errors": [
{
"message": "string"
}
]
}
How is this guide?