Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Communications Group ID
Response
communications group found
Shows details of a communications group
curl --request GET \
--url https://api.rootly.com/v1/communications/groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ba37ac9b-1030-4a6b-8921-1380c7869dca",
"type": "communications-groups",
"attributes": {
"name": "Communication Group 1",
"slug": "communication-group-1",
"description": null,
"is_private": false,
"condition_type": "any",
"email_channel": true,
"sms_channel": false,
"communication_type_id": "0a866b70-9fa9-4c70-b8f2-7513415a36b6",
"slack_channel_ids": [
"f42d3cd3-435e-5530-8f78-a75cbb617eee"
],
"created_at": "2025-09-26T17:24:04.583-07:00",
"updated_at": "2025-09-26T17:24:04.583-07:00",
"team_id": 65,
"communication_group_members": [
{
"id": "18410b38-115d-4ebb-9a8e-bf7197e77a12",
"user_id": 80,
"name": "Clemente Ferry",
"email": "merrie_thiel@kihn-reichel.example"
}
],
"communication_external_group_members": [
{
"id": "c9eee8f1-72d1-4e1f-ad53-7606d0b19f49",
"name": "External member",
"email": "external@example.com",
"phone_number": "+911234567890"
}
],
"communication_group_conditions": [
{
"id": "c7e8c23a-d7cc-4437-bbab-d913b8369b47",
"condition": "is",
"property_type": "service",
"properties": [
{
"id": "f23a1ce1-1f4d-4fc1-ba56-43457ffd919b",
"name": "Assumenda ipsa qui vel."
}
]
}
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Communications Group ID
communications group found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/communications/groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ba37ac9b-1030-4a6b-8921-1380c7869dca",
"type": "communications-groups",
"attributes": {
"name": "Communication Group 1",
"slug": "communication-group-1",
"description": null,
"is_private": false,
"condition_type": "any",
"email_channel": true,
"sms_channel": false,
"communication_type_id": "0a866b70-9fa9-4c70-b8f2-7513415a36b6",
"slack_channel_ids": [
"f42d3cd3-435e-5530-8f78-a75cbb617eee"
],
"created_at": "2025-09-26T17:24:04.583-07:00",
"updated_at": "2025-09-26T17:24:04.583-07:00",
"team_id": 65,
"communication_group_members": [
{
"id": "18410b38-115d-4ebb-9a8e-bf7197e77a12",
"user_id": 80,
"name": "Clemente Ferry",
"email": "merrie_thiel@kihn-reichel.example"
}
],
"communication_external_group_members": [
{
"id": "c9eee8f1-72d1-4e1f-ad53-7606d0b19f49",
"name": "External member",
"email": "external@example.com",
"phone_number": "+911234567890"
}
],
"communication_group_conditions": [
{
"id": "c7e8c23a-d7cc-4437-bbab-d913b8369b47",
"condition": "is",
"property_type": "service",
"properties": [
{
"id": "f23a1ce1-1f4d-4fc1-ba56-43457ffd919b",
"name": "Assumenda ipsa qui vel."
}
]
}
]
}
}
}