cURL
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>" } '
Update a scheduled follow-up
scheduled
400
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" }'