wishlists / #232
- userId
-
Lawrence Rogahn @lawrence_rogahn33
- name
- Back to School
- isPublic
- false
- productIds
-
[ 77, 103, 93, 127, 167, 192, 177 ] - createdAt
- updatedAt
Component variants
Medium
Back to School
#232
Small
wishlists/232 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/232" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/232"
);
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/232"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/232"
)
wishlist = res.json() {
"id": 232,
"userId": 245,
"name": "Back to School",
"isPublic": false,
"productIds": [
77,
103,
93,
127,
167,
192,
177
],
"createdAt": "2025-03-22T14:04:20.841Z",
"updatedAt": "2025-11-15T13:19:05.270Z"
}