Explore documentation

Get single severity group

Returns a single severity group by ID.

GET https://uptime.betterstack.com/api/v2/urgency-groups/:urgency_group_id

URL parameters

urgency_group_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "95251342",
    "type": "urgency_group",
    "attributes": {
      "name": "Example",
      "sort_index": null,
      "created_at": "2024-07-26T15:07:46.350Z",
      "updated_at": "2024-07-26T15:07:46.350Z",
      "team_name": "Testing"
    }
  }
}

Example cURL

Example
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/urgency-groups/1234567 \
  --header "Authorization: Bearer $TOKEN"