Sending messages from your system
A step-by-step walkthrough: find a contact, pick a channel, send a text or a WhatsApp template, and receive replies over a webhook.
A typical integration — an AI assistant, a chatbot, a CRM, or an automation script — needs to send outbound messages through channels connected to AISAR (WhatsApp, Telegram, Instagram, etc.) and receive replies from contacts. This walkthrough takes you from a token to a full "sent → received a reply" loop.
Every request uses the company's Bearer token (see the Authentication guide):
Authorization: Bearer YOUR_API_TOKENStep 1 — pick a channel
Fetch the company's channels to find the channel_id you'll send through:
curl "https://api.aisar.app/v1/channels?status=connected" \
-H "Authorization: Bearer YOUR_API_TOKEN"{
"data": [
{
"id": 57,
"name": "WhatsApp test",
"account_name": "+77001234567",
"status": "connected",
"channel_type": { "id": 1, "key": "whatsapp", "name": "WhatsApp" },
"message_operations": { "can_create": true },
"limits": { "max_text_length": 4096 }
}
]
}Before sending, check that status === "connected" and message_operations.can_create === true.
Step 2 — find or create a contact (optional)
Looking up or creating a contact ahead of time is not required: /messages/send finds an existing conversation by recipient or creates a new contact, thread and conversation on its own. Look a contact up in advance only if you need to check whether it already exists, or to attach extra fields (email, tags, etc.) before the first send.
curl "https://api.aisar.app/v1/contacts?search=%2B77001234567" \
-H "Authorization: Bearer YOUR_API_TOKEN"curl -X POST https://api.aisar.app/v1/contacts \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"displayName": "Иван Иванов",
"phones": [{ "phone": "+77001234567", "type": "mobile" }]
}'Step 3 — send a text message
curl -X POST https://api.aisar.app/v1/messages/send \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"channel_id": 57,
"recipient": "+77001234567",
"message_content": "Здравствуйте! Чем могу помочь?"
}'{
"success": true
}recipient is the recipient identifier in the format the channel expects: an E.164 number for WhatsApp/SMS, a username or chat_id for Telegram Bot, an IGSID for Instagram. To send to a WhatsApp group, pass the group JID (<id>@g.us) — the @g.us suffix is recognized automatically.
conversation.create permission — without it the response is 403 Forbidden.To attach media, first upload the file via POST /v1/uploads (get a media_id), then pass it in attachments:
curl -X POST https://api.aisar.app/v1/messages/send \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"channel_id": 57,
"recipient": "+77001234567",
"message_content": "Смотрите фото",
"attachments": [{ "media_id": "med_01HZABCDEFGHIJKLMNOPQRSTUV" }]
}'Step 4 — send a WhatsApp template and the 24-hour window
WhatsApp Business does not allow sending arbitrary messages to a contact who hasn't messaged you in the last 24 hours — the so-called "customer service window". To start a conversation outside that window, or to run a broadcast, use a Meta-approved template via /messages/send-template.
First, fetch the list of approved templates:
curl "https://api.aisar.app/v1/templates?channel_id=57&metaStatuses[]=approved" \
-H "Authorization: Bearer YOUR_API_TOKEN"Only a template with meta_status: "approved" can be sent. Then send it to the recipient:
curl -X POST https://api.aisar.app/v1/messages/send-template \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"channel_id": 57,
"recipient": "+77001234567",
"template_id": 42,
"params": { "name": "Иван", "order_id": "A-100" }
}'{
"success": true,
"message_id": 12345
}params fills the template's variables: as a named map ({{name}}) or by position — an array or a map with numeric keys ({{1}}, {{2}}). The same conversation.create permission is required; the channel must be of type whatsapp_business.
Step 5 — receive replies over a webhook
To react to a contact's replies (a conversational flow, e.g. with an AI assistant), subscribe to the message.created event — see the Webhooks guide. A typical loop: receive message.created with direction: "inbound" → process the text → call /messages/send or /messages/send-template to reply.
After every send (text or template), subscribed webhook integrations receive message.created with direction: "outbound", followed by message.status.updated as the delivery status progresses (sent → delivered → read, or failed).
When a contact taps a quick-reply button on a sent template, the tap arrives as a regular inbound message with type: "text" and the button's label — handle it the same way as any other message.created event.
Full cycle
1. Внешняя система → GET /v1/channels
(узнать channel_id)
2. Внешняя система → POST /v1/messages/send
{ channel_id, recipient, message_content }
3. AISAR создаёт/находит диалог, создаёт сообщение
4. AISAR → POST {webhook_url} (event: message.created, direction: outbound)
5. Коннектор доставляет сообщение в мессенджер
6. AISAR → POST {webhook_url} (event: message.status.updated)
7. Контакт отвечает → AISAR → POST {webhook_url} (event: message.created, direction: inbound)
8. Внешняя система обрабатывает ответ → снова POST /v1/messages/sendErrors and status codes
| Code | Cause |
|---|---|
401 | Invalid or missing token |
403 | The token owner lacks the conversation.create permission |
404 | Company not found (the token isn't bound to a company) |
422 | Validation error, the channel doesn't belong to the company, or the template isn't approved |
429 | Rate limit exceeded — retry with exponential backoff |
For the full error format, see the Errors guide.