provider Incidents GET
/api/v2/incidents/config/user-defined-fields @utdk/datadog
/api/v2/incidents/config/user-defined-fields Get a list of incident user-defined fields
Get a list of all incident user-defined fields.
- page[size] query
- The number of results to return per page. Must be between 0 and 1000.
- integer
- page[number] query
- The page number to retrieve, starting at 0.
- integer
- include-deleted query
- When true, include soft-deleted fields in the response.
- boolean
- filter[incident-type] query
- Filter results to fields associated with the given incident type UUID.
- string
- include query
- Comma-separated list of related resources to include. Supported values are "last_modified_by_user", "created_by_user", and "incident_type".
- string
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.listincidentuserdefinedfields({
"page[size]": 1000,
"page[number]": 0,
"include-deleted": false
})