Convo
API ReferenceAI Generation

Generate follow-up email

Generates a follow-up email based on the conversation. AI-powered, counts against monthly limit.

POST
/api/v1/conversations/{id}/email

Authorization

AuthorizationRequiredBearer <token>

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

In: header

Request Body

application/jsonOptional
recipientNamestring

Name of the email recipient

tonestring
Default: "professional"Value in: "professional" | "casual" | "concise"

Path Parameters

idRequiredstring

Conversation session ID

curl -X POST "https://www.itsconvo.com/api/v1/conversations/sess_a1b2c3/email" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "recipientName": "Sarah",
    "tone": "professional"
  }'

Generated email

{
  "data": {
    "id": "sess_a1b2c3",
    "subject": "Follow-up: Q1 Planning Review",
    "body": "Hi Sarah,\n\nThanks for joining the Q1 Planning Review today. Here are the key takeaways:\n\n- Revenue increased 15% quarter-over-quarter, with enterprise leading at 22% growth\n- Customer retention held at 94%, though SMB churn needs attention\n\nAction items:\n- Alice: Draft enterprise hiring plan by next week\n- Bob: Prepare SMB retention proposal by end of April\n\nLet me know if I missed anything.\n\nBest,\nAlice",
    "keyPoints": [
      "Revenue increased 15% quarter-over-quarter",
      "Enterprise segment grew fastest at 22%",
      "Retention rate held steady at 94%"
    ],
    "actionItems": [
      "Draft enterprise hiring plan (Alice, next week)",
      "Prepare SMB retention proposal (Bob, end of April)"
    ],
    "generatedAt": "2026-03-18T15:05:00.000Z"
  }
}