Get catalog relation

Returns a single Catalog relation by ID.

GET https://uptime.betterstack.com/api/v2/catalog/relations/{relation_id}

URL parameters

relation_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "37",
    "type": "catalog_relation",
    "attributes": {
      "name": "Team",
      "description": "Catalog of organization teams"
    }
  }
}

Example cURL

Example
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/catalog/relations/37 \
  --header "Authorization: Bearer $TOKEN"