Security
bearerToken
The unique ID for the CloudConnection to search in
Example:"e2b03444-8c5d-44ed-bd9f-7eee882bdf81"
The maximum number of items to return in the result set.
Default:100
Example:100
- Productionhttps://api-v2.dash.app/cloud-object-searches
- Staginghttps://api-v2.dashstaging.app/cloud-object-searches
curl -i -X POST \
https://api-v2.dash.app/cloud-object-searches \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"cloudConnectionId": "e2b03444-8c5d-44ed-bd9f-7eee882bdf81",
"criterion": {
"type": "FIELD_EQUALS",
"field": "PARENT_ID",
"value": {
"type": "ROOT_FOLDER"
}
},
"pageSize": 100,
"pageToken": "hds7bs78bbw7v8w"
}'Response
{ "results": [ { … } ], "nextPage": { "cloudConnectionId": "e2b03444-8c5d-44ed-bd9f-7eee882bdf81", "criterion": { … }, "pageSize": 100, "pageToken": "hds7bs78bbw7v8w" } }