- Productionhttps://api-v2.dash.app/asset-share-searches
- Staginghttps://api-v2.dashstaging.app/asset-share-searches
curl -i -X POST \
https://api-v2.dash.app/asset-share-searches \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"from": 0,
"pageSize": 100,
"criterion": {
"type": "FIELD_EQUALS",
"value": "Folder",
"field": "CREATED_BY"
},
"sorts": [
{
"field": "EXPIRY",
"order": "ASC"
}
]
}'Success
The specified page of AssetShare resources which match the search criterion
The total number of AssetShare resources which match the search criterion
Example:15
Response
{ "results": [ { … } ], "totalResults": 15 }