provider Key Management GET
/api/v2/application_keys @utdk/datadog
/api/v2/application_keys Get all application keys
List all application keys available for your org
- 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 query
- Application key attribute used to sort results. Sort order is ascending by default. In order to specify a descending sort, prefix the attribute with a minus sign.
- enum: created_at, -created_at, last4, -last4…
- filter query
- Filter application keys by the specified string.
- string
- filter[created_at][start] query
- Only include application keys created on or after the specified date.
- string
- filter[created_at][end] query
- Only include application keys created on or before the specified date.
- string
- include query
- Resource path for related resources to include in the response. Only `owned_by` is supported.
- 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.listapplicationkeys({
"page[size]": 10,
"page[number]": 0,
"sort": "name"
})