Teams
Get a team
Using the API
Schedules
- GETList schedules
- POSTCreate a schedule
- GETGet a schedule
- DELDelete a schedule
- PATCHUpdate a schedule
- GETList schedule shifts
- GETGet the Slack user group for a schedule
- PUTAttach or update the Slack user group for a schedule
- DELDetach the Slack user group from a schedule
- GETList linked schedule Slack channels
- PUTLink a Slack channel to a schedule
- DELUnlink a Slack channel from a schedule
Overrides
Coverage
Teams
Get a team
Get a team by its ID.
GET
/
teams
/
{team_id}
curl --request GET \
--url https://api.shiftkeeper.io/teams/{team_id} \
--header 'x-api-key: <api-key>'
{
"team": {
"id": "tea_VJ4sYEOOXVvJBXqFjRzpm",
"name": "Payments",
"description": "All about payments and billing"
}
}
Authorizations
Enter your API key which starts with 'keeper_'
Path Parameters
The ID of the team.
curl --request GET \
--url https://api.shiftkeeper.io/teams/{team_id} \
--header 'x-api-key: <api-key>'
{
"team": {
"id": "tea_VJ4sYEOOXVvJBXqFjRzpm",
"name": "Payments",
"description": "All about payments and billing"
}
}