GET Get SMS Campaign Status​
GET
/sms/campaigns/{id}/status
Get the current sending status of an SMS campaign, including message statistics, sent count, and analytics. For working campaigns, this endpoint also performs housekeeping: resets stale processing messages, schedules recovery batch sends, and auto-archives completed campaigns. PRO (requires FluentCampaign Pro SMS module).
Authorizations​
ApplicationPasswords
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Type
API Key (header: Authorization)
Parameters​
Path Parameters
id*
SMS campaign ID.
Type
Requiredinteger
Query Parameters
request_counter
Poll counter used to trigger periodic cleanup of stale processing messages (runs every 4th request).
Type
integer
Responses​
Campaign status with message statistics.
application/json
JSON
{
"current_timestamp": "string",
"stat": [
{
"status": "string",
"total": 0
}
],
"campaign": {
"id": 0,
"title": "string",
"message_content": "string",
"status": "string",
"type": "string",
"recipients_count": 0,
"scheduled_at": "string",
"settings": {
},
"created_at": "string",
"updated_at": "string",
"sent_by": "string"
},
"sent_count": 0,
"analytics": {
}
}