Skip to main content
POST
/
api
/
v1
/
conversations
/
{id}
/
email
Generate follow-up email
curl --request POST \
  --url https://www.itsconvo.com/api/v1/conversations/{id}/email \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "recipientName": "Sarah",
  "tone": "professional"
}
'
{
  "data": {
    "id": "<string>",
    "subject": "Follow-up: Q1 Planning Review",
    "body": "<string>",
    "keyPoints": [
      "<string>"
    ],
    "actionItems": [
      "<string>"
    ],
    "generatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key as Bearer token. Generate keys in your Convo dashboard settings.

Path Parameters

id
string
required

Conversation session ID

Body

application/json
recipientName
string

Name of the email recipient

Example:

"Sarah"

tone
enum<string>
default:professional
Available options:
professional,
casual,
concise

Response

Generated email

data
object