provider Synthetics GET
/api/v2/synthetics/suites/search @utdk/datadog
/api/v2/synthetics/suites/search Search test suites
Search for test suites.
- query query
- The search query.
- string
- sort query
- The sort order for the results (e.g., `name,asc` or `name,desc`).
- string
- facets_only query
- If true, return only facets instead of full test details.
- boolean
- start query
- The offset from which to start returning results.
- integer
- count query
- The maximum number of results to return.
- integer
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.searchsuites({
"sort": "name,asc",
"facets_only": false,
"start": 0,
"count": 50
})