Skip to main content
DELETE
/
api
/
alerts
/
v1
Delete
curl --request DELETE \
  --url https://developer.synq.io/api/alerts/v1 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "identifier": {
    "fqn": "<string>"
  }
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

DeleteRequest specifies which alert configuration to delete. The config can be identified by either ID or FQN.

identifier
fqn · object
required

Identifier for the config to delete.

Response

200 - application/json

Success

DeleteResponse confirms the deletion (empty response). Empty response - successful deletion is indicated by HTTP 200 status.