Skip to main content
POST
/
api
/
alerts
/
v1
/
list
List
curl --request POST \
  --url https://developer.synq.io/api/alerts/v1/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "owner": {
    "ownerPath": "<string>",
    "ownershipId": "<string>"
  }
}
'
{
  "alertsIds": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

ListRequest filters alert configurations to retrieve.

owner
Owner · object

Optional filter by owner of the alert configurations.

Response

200 - application/json

Success

ListResponse returns the filtered list of alert configurations.

alertsIds
string[]

The list of alert configurations matching the filter criteria.