Synthetics
Edit a test suite
put/api/v2/synthetics/suites/{public_id}
Path parameters
public_idstring required
The public ID of the suite to edit.
Request body
Example request
{
"data": {
"attributes": {
"message": "Notification message",
"monitor_id": 12345678,
"name": "Example suite name",
"public_id": "123-abc-456",
"tags": [
"env:production"
],
"tests": [
{
"alerting_criticality": "critical"
}
],
"type": "suite"
},
"type": "suites"
}
}Response
OK
Example response
{
"data": {
"attributes": {
"message": "Notification message",
"monitor_id": 12345678,
"name": "Example suite name",
"public_id": "123-abc-456",
"tags": [
"env:production"
],
"tests": [
{
"alerting_criticality": "critical"
}
],
"type": "suite"
},
"id": "123-abc-456",
"type": "suites"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.