wishlists / #126
- userId
-
Nikko Kuhlman @nikko_kuhlman
- name
- Favourites
- isPublic
- false
- productIds
-
[ 111, 125, 137, 141, 155, 61, 174, 99, 173, 60, 88, 139, 45 ] - createdAt
- updatedAt
Component variants
Medium
Favourites
#126
Small
wishlists/126 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/126" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/126"
);
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/126"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/126"
)
wishlist = res.json() {
"id": 126,
"userId": 122,
"name": "Favourites",
"isPublic": false,
"productIds": [
111,
125,
137,
141,
155,
61,
174,
99,
173,
60,
88,
139,
45
],
"createdAt": "2024-10-14T15:52:12.152Z",
"updatedAt": "2025-12-25T21:08:47.900Z"
}