# Send Text Message

A text-type conversation is simply a message sent using written words and/or actions.

## Reply with Basic Text Message

<mark style="color:green;">`POST`</mark> `https://www.channel360.co.za/v.1.1/org/{orgId}/whatsapp/appuser/{{appuser}}/reply`

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**Body**

| Name     | Type   | Description                                     |
| -------- | ------ | ----------------------------------------------- |
| `text *` | string | The text of the message you are trying to send. |

{% tabs %}
{% tab title="Curl Request" %}

```bash
curl -X POST "https://www.channel360.co.za/v1.1/org/{orgId}/whatsapp/appuser/{appUser}/reply" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -H "Accept: */*" \
  -d '{
    "text": "Hello World"
  }'

```

{% endtab %}
{% endtabs %}
