Channel Endpoints
Create a channel endpoint
Create a new channel endpoint for a resource.
post/v1/channel-endpoints
Request body
Example request
{
"identifier": "slack-channel-user123-abc4",
"subscriberId": "subscriber-123",
"integrationIdentifier": "slack-prod",
"connectionIdentifier": "slack-connection-abc123",
"type": "slack_channel",
"endpoint": {
"channelId": "C123456789"
}
}Response
Created
Example response
{
"providerId": "slack",
"integrationIdentifier": "slack-prod",
"connectionIdentifier": "slack-connection-abc123",
"subscriberId": "subscriber-123",
"contextKeys": [
"tenant:org-123",
"region:us-east-1"
],
"type": "slack_channel",
"endpoint": {
"channelId": "C123456789"
}
}