Integrations
Issue a URL to link a subscriber chat identity
Returns a provider-specific URL the subscriber opens to link their chat identity. The integration provider is resolved from integrationIdentifier; Telegram returns a deep link.
post/v1/integrations/channel-endpoints/link
Headers
idempotency-keystring
A header for idempotency purposes
Request body
Example request
{
"integrationIdentifier": "telegram-bot",
"subscriberId": "subscriber-123"
}Response
OK
Example response
{
"url": "https://t.me/MyBot?start=AbCdEfGhIjKlMnOpQrStUvWxYz012345",
"providerMetadata": {
"botUsername": "MyBot",
"expiresAt": "2026-06-23T12:00:00.000Z"
}
}