wishlists / #69
- userId
-
Lamont Huel @lamont.huel
- name
- Back to School
- isPublic
- false
- productIds
-
[ 13, 35, 120, 34, 44, 137, 131, 160, 60, 81, 173, 107 ] - createdAt
- updatedAt
Component variants
Medium
Back to School
#69
Small
wishlists/69 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/69" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/69"
);
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/69"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/69"
)
wishlist = res.json() {
"id": 69,
"userId": 69,
"name": "Back to School",
"isPublic": false,
"productIds": [
13,
35,
120,
34,
44,
137,
131,
160,
60,
81,
173,
107
],
"createdAt": "2024-12-07T20:31:42.084Z",
"updatedAt": "2025-09-13T07:17:38.212Z"
}