Authentication
This endpoint requires authentication for private wishlists. Public and shared wishlists can be accessed through their respective URLs.Path Parameters
The unique identifier of the wishlist
Accessing Shared and Public Wishlists
Depending on the wishlist’s audience setting, different access methods are available:- Private Wishlist
- Public Wishlist
Endpoint:
GET /api/v1/wishlists/{id}/Private wishlists can only be accessed by the owner with authentication.Response
Unique identifier for the wishlist
Name of the wishlist
Display name of the wishlist owner
Visibility setting for the wishlist
private: Only the owner can view the wishlistpublic: Anyone can view the wishlistshared: Only users with the sharing URL can view the wishlist
Optional notes about the wishlist
Array of products in the wishlist
Direct URL to access this wishlist
Public URL for the wishlist (only available if audience is
public)Shareable URL with token for the wishlist (only available if audience is
shared)Timestamp when the wishlist was created
Timestamp when the wishlist was last updated
Example Response
200 - Success
401 - Unauthorized
403 - Forbidden
404 - Not Found
Sharing Features
Sharing a Private Wishlist
Sharing a Private Wishlist
Making a Wishlist Public
Making a Wishlist Public
Set the audience to
public to make a wishlist visible to anyone. Public wishlists can be accessed via the public_url endpoint without authentication.This is useful for gift registries, wedding wishlists, or public collections.Reverting to Private
Reverting to Private
Change the audience back to
private at any time. This will invalidate the sharing URL and make the wishlist visible only to the owner.