Version: 202607
List collects
GET/openapi/2026-07/collects
Retrieves a list of collect objects, representing the associations between products and collections.
Request
Query Parameters
cursor string
Cursor for pagination
page_size int32
A limit on the number of objects to return. Range: 1-100 (default is 10)
collection_id string
UUID of the collection to filter collects
product_id string
UUID of the product to filter collects
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
codestring
error code
messagestring
error message
data object
collects object[]
List of collects
idstring
Collect ID
collection_idstring
Identifier of the associated collection
product_idstring
Identifier of the associated product
positionint64
Position of the product in the collection
created_atstring
Timestamp when the collect was created
updated_atstring
Timestamp when the collect was last updated
cursorstring
Cursor for pagination
has_moreboolean
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"collects": [
{
"id": "string",
"collection_id": "string",
"product_id": "string",
"position": 0,
"created_at": "string",
"updated_at": "string"
}
],
"cursor": "string",
"has_more": true
}
}