Send a message
curl --request POST \
--url https://workspace.passionfroot.me/api/v1/conversations/{conversationId}/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"text": "Thanks! Could we move the date to September 15?"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({text: 'Thanks! Could we move the date to September 15?'})
};
fetch('https://workspace.passionfroot.me/api/v1/conversations/{conversationId}/messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/v1/conversations/{conversationId}/messages"
payload = { "text": "Thanks! Could we move the date to September 15?" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"data": {
"id": "msg_abc",
"conversationId": "conv_abc",
"createdAt": "2026-09-01T09:20:00.000Z"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}{
"error": "<string>"
}Conversations
Send a message
Sends a text message as the member who created the API key and marks the conversation read for the organization.
POST
/
conversations
/
{conversationId}
/
messages
Send a message
curl --request POST \
--url https://workspace.passionfroot.me/api/v1/conversations/{conversationId}/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"text": "Thanks! Could we move the date to September 15?"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({text: 'Thanks! Could we move the date to September 15?'})
};
fetch('https://workspace.passionfroot.me/api/v1/conversations/{conversationId}/messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/v1/conversations/{conversationId}/messages"
payload = { "text": "Thanks! Could we move the date to September 15?" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"data": {
"id": "msg_abc",
"conversationId": "conv_abc",
"createdAt": "2026-09-01T09:20:00.000Z"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}{
"error": "<string>"
}Authorizations
Create an API key from Settings → API in an approved Partner workspace.
Headers
Unique key for one logical write. Reuse the key and identical body for retries.
Required string length:
1 - 255Path Parameters
Body
application/json
Plain text or allowed basic HTML.
Required string length:
1 - 10000Response
Message sent.
Show child attributes
Show child attributes