Get subscribed alerts for an ambassador (manager)

GET /manager/ambassadors/{id}/alerts

Path parameters

  • id integer Required

    The ambassador id

Responses

  • 200 application/json

    Return all subscribed alerts for an ambassador

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • isManagerAlert boolean
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
    • message string
  • 403

    Forbidden - You don't have permission to access this route

  • 404

    Not found - The ambassador does not exist

GET /manager/ambassadors/{id}/alerts
curl \
 --request GET 'https://domain.tld/api/v2/manager/ambassadors/{id}/alerts' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "isManagerAlert": true
  }
]
Response examples (401)
{
  "message": "Unauthorized."
}