wishlists / #117
- userId
-
Arnaldo Friesen @arnaldo_friesen78
- name
- Back to School
- isPublic
- false
- productIds
-
[ 38, 137, 121, 97 ] - createdAt
- updatedAt
Component variants
Medium
Back to School
#117
Small
wishlists/117 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/117" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/117"
);
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/117"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/117"
)
wishlist = res.json() {
"id": 117,
"userId": 113,
"name": "Back to School",
"isPublic": false,
"productIds": [
38,
137,
121,
97
],
"createdAt": "2024-06-14T16:02:23.658Z",
"updatedAt": "2025-09-05T13:10:43.489Z"
}