wishlists / #41
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- name
- Birthday Wishlist
- isPublic
- false
- productIds
-
[ 45, 200, 104, 117 ] - createdAt
- updatedAt
Component variants
Medium
Birthday Wishlist
#41
Small
wishlists/41 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/41" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/41"
);
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/41"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/41"
)
wishlist = res.json() {
"id": 41,
"userId": 40,
"name": "Birthday Wishlist",
"isPublic": false,
"productIds": [
45,
200,
104,
117
],
"createdAt": "2024-11-14T00:00:54.480Z",
"updatedAt": "2025-07-06T06:56:37.548Z"
}