provider Reference Tables GET /api/v2/reference-tables/tables
@utdk/datadog /api/v2/reference-tables/tables
List tables
List all reference tables in this organization.
page[limit] query
Number of tables to return.
integer
page[offset] query
Number of tables to skip for pagination.
integer
sort query
Sort field and direction for the list of reference tables. Use field name for ascending, prefix with "-" for descending.
enum: updated_at, table_name, status, -updated_at…
filter[status] query
Filter by table status.
string
filter[table_name][exact] query
Filter by exact table name match.
string
filter[table_name][contains] query
Filter by table name containing substring.
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.

listtables
GET/api/v2/reference-tables/tables
List all reference tables in this organization.

Number of tables to return.

Number of tables to skip for pagination.

Sort field and direction for the list of reference tables. Use field name for ascending, prefix with "-" for descending.

Filter by table status.

Filter by exact table name match.

Filter by table name containing substring.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import datadog from '@utdk/datadog';

await datadog.listtables({
  "page[limit]": 15,
  "page[offset]": 0,
  "sort": "-updated_at"
})