Create a new Asset Saved Crop Area Summary Search
Security
bearerToken
The maximum number of items to return in the result set.
Default:100
Example:100
- Productionhttps://api-v2.dash.app/asset-saved-crop-area-summary-searches
- Staginghttps://api-v2.dashstaging.app/asset-saved-crop-area-summary-searches
- FIELD_EQUALS
- FIELD_IN
- AND
curl -i -X POST \
https://api-v2.dash.app/asset-saved-crop-area-summary-searches \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"from": 0,
"pageSize": 100,
"criterion": {
"type": "FIELD_EQUALS",
"value": "Folder",
"field": "PRESET_ID"
},
"sorts": [
{
"field": "PRESET_ID",
"order": "ASC"
}
]
}'Success
The specified page of SavedCropAreaSummary resources which match the search criterion
The total number of SavedCropAreaSummary resources which match the search criterion
Example:15
Response
{ "results": [ { … } ], "totalResults": 15 }