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
patchtestsuite
PATCH/api/v2/synthetics/suites/{public_id}/jsonpatch
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"}`

Parameters

required

The public ID of the Synthetic test suite to patch.

Input

required

Data object for a JSON Patch request on a Synthetic test suite.

Configure credentials above to enable sending.

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

TypeScript

import datadog from '@utdk/datadog';

await datadog.patchtestsuite()