GET
https://uptime.betterstack.com/api/v2/catalog/relations
Headers
Authorization
required
string
Bearer $TOKEN
Returns a list of all your Catalog relations. This endpoint supports pagination.
Headers
Bearer $TOKEN
Returns list of existing Catalog relations
Response body
{
"data": [
{
"id": "37",
"type": "catalog_relation",
"attributes": {
"name": "Team",
"description": "Catalog of organization teams"
}
}
],
"pagination": {
"first": "https://uptime.betterstack.com/api/v2/catalog/relations?page=1",
"last": "https://uptime.betterstack.com/api/v2/catalog/relations?page=1",
"prev": null,
"next": null
}
}
curl --request GET \
--url https://uptime.betterstack.com/api/v2/catalog/relations \
--header "Authorization: Bearer $TOKEN"