wishlists / #173
- userId
-
Gerald Lind @gerald_lind57
- name
- Want Later
- isPublic
- false
- productIds
-
[ 70, 166 ] - createdAt
- updatedAt
Component variants
Medium
Want Later
#173
Small
wishlists/173 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/173" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/173"
);
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/173"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/173"
)
wishlist = res.json() {
"id": 173,
"userId": 179,
"name": "Want Later",
"isPublic": false,
"productIds": [
70,
166
],
"createdAt": "2024-08-27T23:15:06.898Z",
"updatedAt": "2026-04-14T08:22:31.058Z"
}