wishlists / #189
- userId
-
Frederic Armstrong @frederic_armstrong96
- name
- Home Decor
- isPublic
- false
- productIds
-
[ 189, 142, 70, 97, 65, 35, 155, 80, 121, 134, 149, 126, 2 ] - createdAt
- updatedAt
Component variants
Medium
Home Decor
#189
Small
wishlists/189 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/189" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/189"
);
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/189"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/189"
)
wishlist = res.json() {
"id": 189,
"userId": 199,
"name": "Home Decor",
"isPublic": false,
"productIds": [
189,
142,
70,
97,
65,
35,
155,
80,
121,
134,
149,
126,
2
],
"createdAt": "2024-05-25T01:14:41.906Z",
"updatedAt": "2024-09-27T12:20:33.280Z"
}