Get a single severity

Returns a single severity by ID.

GET https://uptime.betterstack.com/api/v2/urgencies/{urgency_id}

URL parameters

urgency_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "456",
    "type": "urgency",
    "attributes": {
      "name": "Low Severity",
      "sms": false,
      "call": false,
      "email": true,
      "push": false
    }
  }
}
404

Response body

{
  "errors": "Resource with provided ID was not found"
}

Example cURL

Example
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/urgencies/123 \
  --header "Authorization: Bearer $TEAM_TOKEN"