Shows details of a communications group
curl --request GET \
--url https://api.rootly.com/v1/communications/groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "815136ce-64cf-4655-a275-e088444728c0",
"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": "c06b4ded-02d0-4e45-92fb-5d474f2dda32",
"slack_channel_ids": [
"9021573a-a6ec-5975-a26d-0ffa8c217597"
],
"created_at": "2025-08-18T10:33:01.745-07:00",
"updated_at": "2025-08-18T10:33:01.745-07:00",
"team_id": 59,
"communication_group_members": [
{
"id": "0c34db45-d299-4f18-b40b-8060c8e3ea76",
"user_id": 64,
"name": "Vincent Nicolas",
"email": "marcelo@runolfsson.example"
}
],
"communication_external_group_members": [
{
"id": "b1b97541-e337-4e9e-98ce-ecbd01e3bc11",
"name": "External member",
"email": "external@example.com",
"phone_number": "+911234567890"
}
],
"communication_group_conditions": [
{
"id": "029e3274-e5c4-4df6-88e2-417dc22e1a95",
"condition": "is",
"property_type": "service",
"properties": [
{
"id": "7788d882-0b85-4d8d-986d-34cc29205fc8",
"name": "Laudantium et aliquid quo."
}
]
}
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Communications Group ID
communications group found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/communications/groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "815136ce-64cf-4655-a275-e088444728c0",
"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": "c06b4ded-02d0-4e45-92fb-5d474f2dda32",
"slack_channel_ids": [
"9021573a-a6ec-5975-a26d-0ffa8c217597"
],
"created_at": "2025-08-18T10:33:01.745-07:00",
"updated_at": "2025-08-18T10:33:01.745-07:00",
"team_id": 59,
"communication_group_members": [
{
"id": "0c34db45-d299-4f18-b40b-8060c8e3ea76",
"user_id": 64,
"name": "Vincent Nicolas",
"email": "marcelo@runolfsson.example"
}
],
"communication_external_group_members": [
{
"id": "b1b97541-e337-4e9e-98ce-ecbd01e3bc11",
"name": "External member",
"email": "external@example.com",
"phone_number": "+911234567890"
}
],
"communication_group_conditions": [
{
"id": "029e3274-e5c4-4df6-88e2-417dc22e1a95",
"condition": "is",
"property_type": "service",
"properties": [
{
"id": "7788d882-0b85-4d8d-986d-34cc29205fc8",
"name": "Laudantium et aliquid quo."
}
]
}
]
}
}
}