Create a new [PresetTransformationsForAssetSearch]
Security
bearerToken
The maximum number of items to return in the result set.
Default:100
Example:100
- Productionhttps://api-v2.dash.app/preset-transformations-for-asset-searches
- Staginghttps://api-v2.dashstaging.app/preset-transformations-for-asset-searches
curl -i -X POST \
https://api-v2.dash.app/preset-transformations-for-asset-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"
}
]
}'Response
{ "results": [ { … } ], "totalResults": 1337 }