Create a new AssetEmbeddableLinkSearch. The criterion and sort currently support search by ASSET_ID field only.
Security
bearerToken
- Productionhttps://api-v2.dash.app/embeddable-link-searches
- Staginghttps://api-v2.dashstaging.app/embeddable-link-searches
curl -i -X POST \
https://api-v2.dash.app/embeddable-link-searches \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"from": 0,
"pageSize": 100,
"criterion": {
"type": "FIELD_IN",
"values": [
"this",
"that"
],
"field": "ASSET_ID"
},
"sorts": [
{
"field": "ASSET_ID",
"order": "ASC"
}
]
}'Success
The specified page of AssetEmbeddableLink resources which match the search criterion
The total number of AssetEmbeddableLink resources which match the search criterion
Example:15
Response
{ "results": [ { … } ], "totalResults": 15 }