provider Network Device Monitoring GET
/api/v2/ndm/devices @utdk/datadog
/api/v2/ndm/devices Get the list of devices
Get the list of devices.
- page[size] query
- Size for a given page. The maximum allowed value is 500. Defaults to 50.
- integer
- page[number] query
- Specific page number to return. Defaults to 0.
- integer
- sort query
- The field to sort the devices by. Defaults to `name`.
- string
- filter[tag] query
- Filter devices by tag.
- 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.listdevices({
"page[size]": 50,
"page[number]": 0,
"sort": "name"
})