wishlists / #113
- userId
-
Earnestine Dickinson @earnestine_dickinson
- name
- Back to School
- isPublic
- true
- productIds
-
[ 13, 172, 188, 193, 143, 69, 139, 70, 197, 31, 33, 15, 194 ] - createdAt
- updatedAt
Component variants
Medium
Back to School
#113
Small
wishlists/113 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/113" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/113"
);
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/113"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/113"
)
wishlist = res.json() {
"id": 113,
"userId": 110,
"name": "Back to School",
"isPublic": true,
"productIds": [
13,
172,
188,
193,
143,
69,
139,
70,
197,
31,
33,
15,
194
],
"createdAt": "2026-01-15T10:54:05.003Z",
"updatedAt": "2026-03-13T14:37:40.248Z"
}