Integrations
Generate OAuth URL to link a subscriber user identity
Generate an OAuth URL that links a specific subscriber to their chat identity (Slack user ID, MS Teams user OID, or Webex person). The generated URL expires after 5 minutes.
post/v1/integrations/channel-endpoints/oauth
Headers
idempotency-keystring
A header for idempotency purposes
Request body
Example request
{
"subscriberId": "subscriber-123",
"connectionIdentifier": "slack-connection-abc123",
"contextHash": "a1b2c3d4e5f6...",
"userScope": [
"identity.basic"
]
}Response
Created
Example response
{
"url": "https://slack.com/oauth/v2/authorize?state=..."
}