wishlists / #107
- userId
-
Rosina Larkin @rosina.larkin75
- name
- Saved for Later
- isPublic
- true
- productIds
-
[ 101, 60, 146 ] - createdAt
- updatedAt
Component variants
Medium
Saved for Later
#107
Small
wishlists/107 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/107" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/107"
);
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/107"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/107"
)
wishlist = res.json() {
"id": 107,
"userId": 103,
"name": "Saved for Later",
"isPublic": true,
"productIds": [
101,
60,
146
],
"createdAt": "2024-08-05T04:52:45.911Z",
"updatedAt": "2026-05-09T00:03:56.098Z"
}