wishlists / #79
- userId
-
Marilou Douglas @marilou.douglas
- name
- Tech Gadgets
- isPublic
- true
- productIds
-
[ 182, 168, 167, 83, 89, 87, 186, 20, 132, 3, 154, 94, 62, 90, 102 ] - createdAt
- updatedAt
Component variants
Medium
Tech Gadgets
#79
Small
wishlists/79 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/79"
);
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/79"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/79"
)
wishlist = res.json() {
"id": 79,
"userId": 78,
"name": "Tech Gadgets",
"isPublic": true,
"productIds": [
182,
168,
167,
83,
89,
87,
186,
20,
132,
3,
154,
94,
62,
90,
102
],
"createdAt": "2025-09-17T16:23:17.637Z",
"updatedAt": "2026-04-27T21:36:05.489Z"
}