wishlists / #170
- userId
-
Fatima Dicki @fatima_dicki
- name
- Back to School
- isPublic
- false
- productIds
-
[ 188, 73, 1, 82, 77, 127, 121, 124, 81, 65, 57, 195, 10, 66 ] - createdAt
- updatedAt
Component variants
Medium
Back to School
#170
Small
wishlists/170 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/170" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/170"
);
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/170"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/170"
)
wishlist = res.json() {
"id": 170,
"userId": 176,
"name": "Back to School",
"isPublic": false,
"productIds": [
188,
73,
1,
82,
77,
127,
121,
124,
81,
65,
57,
195,
10,
66
],
"createdAt": "2025-02-25T12:31:42.352Z",
"updatedAt": "2025-10-17T01:44:13.857Z"
}