Skip to main content
POST
/
api
/
v1
/
on-call
/
teams
/
{teamId}
/
channels
Add a channel to a team
curl --request POST \
  --url https://api.example.com/api/v1/on-call/teams/{teamId}/channels \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "<string>",
  "config": {},
  "memberId": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

teamId
string
required

Body

application/json
type
string
required
config
object
required
memberId
string

Response

201 - undefined