Skip to main content
GET
/
schedules
/
{schedule_id}
/
slack_user_group
Get the Slack user group for a schedule
curl --request GET \
  --url https://api.shiftkeeper.io/schedules/{schedule_id}/slack_user_group/ \
  --header 'x-api-key: <api-key>'
{
  "user_group": {
    "id": "<string>",
    "name": "<string>",
    "handle": "<string>",
    "description": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Enter your API key which starts with 'keeper_'

Path Parameters

schedule_id
string
required

The ID of the schedule.

Response

Default Response

user_group
object
required
Example:
{
"id": "S083J1KTL9X",
"name": "Incident responders",
"handle": "incident-responders"
}