curl --request GET \
--url https://prod01.oms.fabric.inc/api/v2/list/user/{userId} \
--header 'Authorization: Bearer <token>'
[
{
"listId": "5349b4ddd2781d08c09890f4",
"name": "Wishlist",
"userId": null,
"listType": "Wish list",
"notes": "Add items to your wishlist to purchase later",
"attributes": {
"attr1": "value1",
"attr2": "value2"
},
"count": 0,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
Retrieves lists created for a specific user, by user ID.
curl --request GET \
--url https://prod01.oms.fabric.inc/api/v2/list/user/{userId} \
--header 'Authorization: Bearer <token>'
[
{
"listId": "5349b4ddd2781d08c09890f4",
"name": "Wishlist",
"userId": null,
"listType": "Wish list",
"notes": "Add items to your wishlist to purchase later",
"attributes": {
"attr1": "value1",
"attr2": "value2"
},
"count": 0,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
return Lists
The response is of type object[]
.
Was this page helpful?