Create a new CollectionShareSearch
This endpoint is unauthenticated. Do not send a Bearer Token in the Authorization Header
- Productionhttps://api-v2.dash.app/publicly-available-collection-share-searches
- Staginghttps://api-v2.dashstaging.app/publicly-available-collection-share-searches
curl -i -X POST \
https://api-v2.dash.app/publicly-available-collection-share-searches \
-H 'Content-Type: application/json' \
-d '{
"from": 0,
"pageSize": 100,
"criterion": {
"type": "FIELD_HAS_ITEMS",
"value": "an item",
"field": "SLUGS"
},
"sorts": [
{
"field": "ID",
"order": "ASC"
}
]
}'Success
The specified page of CollectionShare resources which match the search criterion
The total number of CollectionShare resources which match the search criterion
Example:15
Response
{ "results": [ { … } ], "totalResults": 15 }