provider Synthetics PATCH
/api/v2/synthetics/suites/{public_id}/jsonpatch @utdk/datadog
/api/v2/synthetics/suites/{public_id}/jsonpatch Patch a test suite
Patch a Synthetic test suite using JSON Patch (RFC 6902).
Use partial updates to modify only specific fields of a test suite.
Common operations include:
- Replace field values: `{"op": "replace", "path": "/name", "value": "new_name"}`
- Add/update tags: `{"op": "add", "path": "/tags/-", "value": "new_tag"}`
- Remove fields: `{"op": "remove", "path": "/message"}`
- public_id path required
- The public ID of the Synthetic test suite to patch.
- 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.patchtestsuite()