# Send WhatsApp session message

A regular message consists of simply a textual message. Below is a example to send one to a WhatsApp number:

```bash
curl --request POST \
     --url https://api.connectly.ai/v1/businesses/<business_id>/send/messages \
     --header 'Accept: application/json' \
     --header 'Content-Type: application/json' \
     --header 'X-API-Key: <YOUR_KEY_HERE>' \
     --data '
```

If the request goes through, a message ID will be included in the response, with which you can track the message delivery status if you are subscribed to the [webhook](/message-api/webhook-api.md).

To read more on how to send a regular message, see [Send session message](/message-api/message-service-api/messageservice/send-session-message.md).

**Eligibility for sending WhatsApp messages**

Notice that you can NOT send a regular message to the customer first if the customer has not messaged first. Once the customer messaged you first there is a 24-hr eligibility window for businesses to reply to the customer message. After that, only [template messages](/quick-start.md#send-a-whatsapp-template-message) can be sent to the customer.<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.connectly.ai/quick-start/send-whatsapp-session-message.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
