Update a SavedCropArea resource. Only the provided fields will be updated
Security
bearerToken
The unique ID of the SavedCropArea
- Productionhttps://api-v2.dash.app/asset-saved-crop-areas/{id}
- Staginghttps://api-v2.dashstaging.app/asset-saved-crop-areas/{id}
curl -i -X PATCH \
'https://api-v2.dash.app/asset-saved-crop-areas/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"cropParameters": {
"x": 200,
"y": 100,
"width": 400,
"height": 300
},
"previewUri": "string"
}'Response
{ "result": { "id": "string", "presetId": "string", "assetId": "string", "cropParameters": { … }, "previewUri": "string" }, "permittedActions": [ { … } ] }