wishlists / #65
- userId
-
Enos Hamill @enos_hamill
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 103, 48, 182, 138, 79, 155, 192, 64, 8, 108, 91, 94 ] - createdAt
- updatedAt
Component variants
Medium
Summer Picks
#65
Small
wishlists/65 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/65" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/65"
);
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/65"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/65"
)
wishlist = res.json() {
"id": 65,
"userId": 65,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
103,
48,
182,
138,
79,
155,
192,
64,
8,
108,
91,
94
],
"createdAt": "2025-01-28T21:56:51.794Z",
"updatedAt": "2026-05-18T14:46:12.164Z"
}