wishlists / #121
- userId
-
Daren Lockman @daren_lockman67
- name
- Favourites
- isPublic
- true
- productIds
-
[ 113, 109, 57, 61, 101, 125, 71, 34, 110 ] - createdAt
- updatedAt
Component variants
Medium
Favourites
#121
Small
wishlists/121 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/121"
);
const wishlist = await res.json();import type { Wishlist } from "https://example-data.com/types/wishlists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/wishlists/121"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/121"
)
wishlist = res.json() {
"id": 121,
"userId": 116,
"name": "Favourites",
"isPublic": true,
"productIds": [
113,
109,
57,
61,
101,
125,
71,
34,
110
],
"createdAt": "2025-10-17T14:43:31.266Z",
"updatedAt": "2026-04-18T12:56:02.423Z"
}