> For the complete documentation index, see [llms.txt](https://docs-v1.archipels.io/archipels-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-v1.archipels.io/archipels-documentation/other-features/messages/send-a-message.md).

# Send a message

## from the Verifier wallet

* Create a new request with the Method POST and the value <mark style="background-color:orange;">{{base\_URL}}/messages</mark>
* Rename this request "Send message"
* Select the tab `Body`, then select `raw` and copy/paste this json request (replace the value of the connectionId with the one you already used for the previous connection with the Holder):

```
{
    "connectionId": "0f42f1da-ab2d-41da-91e1-167c31d966a9",
    "content": "This is a test message: HELLO WORLD"
}
```

* save the request and click `SEND`
* Now connect to the web interface of the Holder wallet. You will see the message in the Chats interface:

<figure><img src="https://3286990890-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FKgeupdY3hrGssCi0E9aI%2Fuploads%2FM9mCb5mPV4UoVANxVDZ7%2Fimage.png?alt=media&amp;token=33cb958b-6d48-4f05-a321-082e3f570f18" alt=""><figcaption></figcaption></figure>

```bash
curl -X 'POST' \
  'https://connect-api.sandbox.archipels.io/messages' \
  -H 'accept: */*' \
  -H 'Authorization: Bearer SFUIRE8GsrçSv4vs94VS94svvzOStgrrzjft=' \
  -H 'Content-Type: application/json' \
  -d '{
    "connectionId": "0f42f1da-ab2d-41da-91e1-167c31d966a9",
    "content": "This is a test message: HELLO WORLD"
}'
```
