Tickets & Follow-ups API
The Tickets & Follow-ups API enables you to manage support tickets and schedule follow-ups programmatically.
Ticket CRUD Operations
Manage support tickets:
- •GET /tickets — List tickets with filtering by status, priority, assignee
- •POST /tickets — Create a new ticket
- •GET /tickets/:id — Get ticket details with full history
- •PUT /tickets/:id — Update ticket (status, priority, assignee)
- •DELETE /tickets/:id — Close and archive a ticket
**Ticket Statuses:** open, in_progress, waiting, resolved, closed **Priority Levels:** low, medium, high, critical
Ticket Comments
Add and manage ticket comments:
- •GET /tickets/:id/comments — List all comments on a ticket
- •POST /tickets/:id/comments — Add a comment
- •PUT /tickets/:id/comments/:commentId — Edit a comment
- •DELETE /tickets/:id/comments/:commentId — Delete a comment
Comments support markdown formatting and file attachments.
Follow-ups Endpoints
Schedule and manage follow-ups:
- •GET /followups — List follow-ups with date range and status filters
- •POST /followups — Schedule a new follow-up
- •PUT /followups/:id — Update follow-up details or mark as completed
- •DELETE /followups/:id — Cancel a scheduled follow-up
**Required fields for creation:** leadId or clientId, scheduledDate, type (call, email, meeting)
Related Articles
Authentication API
The Authentication API handles user login, registration, email OTP verification, and session management.
API ReferenceLeads & Clients API
The Leads & Clients API provides full CRUD operations for managing leads and client records programmatically.
API ReferenceAnalytics & Tracking API
The Analytics & Tracking API provides access to productivity metrics, activity tracking data, and report generation.