This endpoint dispatches a subject and body through any combination of enabled channels simultaneously. You can target Email, SMS, Push, InApp, and Webhook in a single request — the API fans the message out to each specified channel concurrently and returns a per-channel result. The endpoint requires theDocumentation Index
Fetch the complete documentation index at: https://alphabet-06152314.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
AdminOnly authorization policy.
Endpoint
AdminOnly
Request body
The message subject line. Used as the email subject for the
Email channel and as a title for InApp and Push notifications.The message body text. Set
isHtml to true to render this as HTML in email clients.One or more channels to send through. Valid values:
Email, Sms, Push, InApp, Webhook.Recipient email address. Required when
Email is included in channels.Recipient phone number in E.164 format (e.g.
+97455555555). Required when Sms is included in channels.The GUID or string identifier of the target user. Required when
InApp is included in channels.Device push token for the recipient. Required when
Push is included in channels.The URL to POST the message payload to. Required when
Webhook is included in channels.When
true, the body field is rendered as HTML in email clients. Has no effect on non-email channels. Defaults to false.Response
200 OK — returnsCommunicationBatchResponseDto.
One entry per channel included in the request.
ProblemDetails when dispatch failed entirely or the request body is invalid.
A
200 OK response does not mean every channel succeeded. Check each item in results — a channel-level failure is reported there while the overall HTTP status remains 200.