Skip to content

update a wishlist

PUT
/wishlists/{wishlistId}

Update an existing wishlist

  • A wishlist has a total size limit of 300kb. If exceeded a 400 Bad Request is returned with error code wishlist-size

  • If the wishlist does not exist, a 404 Not Found is returned

  • When updating a wishlist, the userId, wishlistId and shareId cannot be modified

  • The wishlist data should be provided via raw JSON in the request body

Authorizations

bearerAuth
TypeHTTP (bearer)

Parameters

Query Parameters

format

Returns the card content without signed access urls

Typestring
Exampleraw

Request Body

application/json
JSON
{
"content": [
{
"item": "abcdefg"
}
]
}

Responses

200 OK
application/json
JSON
{
"content": [
{
"item": "abcdefg"
}
],
"shareId": "9wlVXmbVuUYTbiMZgqDkN",
"userId": "auth0|65afcb79a4f5ae5550e6e63a",
"wishlistId": "default"
}

Playground

Authorization
Variables
Key
Value
Body

Samples