Skip to main content

Incoming Messages Webhook

Seleqt can forward new incoming messages to your webhook URL on a per-user basis.

Configure

PUT /api/v1/user/webhook/ Body
  • Send null (or empty string in UI) to disable.

Delivery

When a new message is received on a connected account in your organization, Seleqt will POST:
  • Retries are not currently guaranteed; implement idempotency by checking message.message_id on your side.

Security

  • Consider hosting your endpoint behind a firewall that allows only Seleqt IPs or implement your own signature verification.
  • For now, no signature header is included in this webhook.

Example handler (Node/Express)