# Send Text

**if you need to Send Plain Text using Cartat WhatsApp API You can use this endpoint.**

## To Sent Text Message

<mark style="color:green;">`POST`</mark> `https://api.cartat.net/message/text`

#### Headers

| Name                                            | Type             | Description                                                                           |
| ----------------------------------------------- | ---------------- | ------------------------------------------------------------------------------------- |
| Accept<mark style="color:red;">\*</mark>        | application/json |                                                                                       |
| Content-Type<mark style="color:red;">\*</mark>  | application/json |                                                                                       |
| Authorization<mark style="color:red;">\*</mark> | Bearer {{token}} | you can find your access token [here](https://docs.cartat.net/cartat-api/get-started) |

#### Request Body

| Name                                      | Type       | Description                                |
| ----------------------------------------- | ---------- | ------------------------------------------ |
| number<mark style="color:red;">\*</mark>  | 9665000000 | Receiver number starting with country code |
| message<mark style="color:red;">\*</mark> | Hi There ! | the message                                |

{% tabs %}
{% tab title="200: OK " %}

```json
{
    "status": "success",
    "id": "3EB0D788F7F0D44C3ECBB1",
    "from": "9665000000",
    "to": "9665000000",
    "type": "chat",
    "body": "Hi There !"
}
```

{% endtab %}
{% endtabs %}
