Skip to main content
PATCH
/
api
/
follow-ups
/
{id}
Update Follow-up
curl --request PATCH \
  --url https://app.replyify.ai/api/follow-ups/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "notes": "<string>",
  "draft_message": "<string>",
  "due_at": "<string>",
  "action": "<string>"
}
'
Only follow-ups with scheduled status can be updated. Attempting to edit sent, failed, or cancelled follow-ups returns a 400 error.

Path Parameters

id
string
required
The follow-up ID to update

Body Parameters

notes
string
Update internal notes (AI context)
draft_message
string
Update or set the email draft
due_at
string
Update the scheduled send time. Must be in the future.
action
string
Update the follow-up type

Response

Returns the updated follow-up object.
curl -X PATCH "https://app.replyify.ai/api/follow-ups/fu_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "draft_message": "Hi John, wanted to follow up on our pricing discussion...",
    "due_at": "2025-02-03T09:00:00Z"
  }'