# How to Send an Existing Message or Voice Memo

You can send a previously sent message or saved voice memo to a conversation. You must be the creator of the message.

## Send an existing message to a conversation

```
POST /v3/messages/{message_guid}/send/{channel_guid}
```

## Reply with an existing message

```
POST /v3/messages/{message_guid}/send/{channel_guid}/{reply_to_message_id}
```

| Parameter | Description |
| --- | --- |
| `message_guid` | ID of the message you want to forward. Must be a message you created. |
| `channel_guid` | The conversation to send it to. |
| `reply_to_message_id` | *(reply variant only)* The message to thread under. |
