provider Case Management GET
/api/v2/cases @utdk/datadog
/api/v2/cases Search cases
Search cases.
- page[size] query
- Size for a given page. The maximum allowed value is 100.
- integer
- page[number] query
- Specific page number to return.
- integer
- sort[field] query
- Specify which field to sort
- enum: created_at, priority, status
- filter query
- Search query
- string
- sort[asc] query
- Specify if order is ascending or not
- boolean
Try it
Authentication
Configure credentials for Datadog API V2 Collection
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import datadog from '@utdk/datadog';
await datadog.searchcases({
"page[size]": 10,
"page[number]": 0,
"sort[asc]": false
})