Create Followup
Followups API
Create Followup
Create a new followup activity for a debt
POST
Create Followup
Overview
This endpoint allows you to create a new followup activity for an existing debt. You can log calls, emails, SMS, or other communication activities.Authentication
Requires a valid OAuth 2.0 access token with thefollowups:write scope.
Request
Bearer token for authentication
Must be
application/jsonRequest Body
Encrypted ID of the debt this followup belongs to
Type of followup:
call, email, sms, whatsapp, voicemail, manual_call, physical, postmailFollowup status. Use simple string values:
on_hold, scheduled, in_progress, sent, delivered, deal_found, no_answer, deal_not_found, bad_behavior, failed, cancelled. Defaults to on_hold.When the followup was executed (ISO 8601 format)
When to execute the followup (ISO 8601 format)
Brief summary of the followup
Detailed notes about the followup
External call ID from the provider
URL to the call recording
Duration in milliseconds (for calls)
Phone number used for the followup
Call direction:
inbound or outboundReason for call disconnection
Whether this is a retry attempt
Example Request
Response
Always
false for successful requestsSuccess message
The created followup object
Success Response
Validation Rules
Required Fields
Required Fields
debt_id: Must be a valid encrypted debt ID that belongs to your company
Type Validation
Type Validation
type: Must be one of:call,sms,email,whatsapp,voicemail,manual_call,physical,postmail
Status Validation
Status Validation
status: Must be one of:on_hold,scheduled,in_progress,sent,delivered,deal_found,no_answer,deal_not_found,bad_behavior,failed,cancelled- Default is
on_holdif not specified
Date Validation
Date Validation
scheduled_at: Must be in ISO 8601 format if providedcall_date: Must be in ISO 8601 format if provided
Error Responses
After Creation
Once a followup is created, you can:- Monitor Progress: Use Get Followup to check status
- Update Details: Use Update Followup to modify information
- Track Results: View completion status and outcomes
- Generate Reports: Include followup data in your analytics
Related Endpoints
- List Followups - Get all followups
- Get Followup - Get specific followup details
- Update Followup - Modify followup information
- Get Debt - Get the associated debt information