Queue Status

Mobile App Integration Guide

Queue Status

GET /?endpoint=queue_status

Fetches the current status of a single outgoing queue item. Useful for polling until delivery confirmation.

Query Parameters

FieldTypeDescription
idinteger required Queue message ID.

Example Request

cURL
curl "https://api.rcszilla.com/?endpoint=queue_status&id=101" \
  -H "Authorization: Bearer YOUR-DEVICE-TOKEN"

Response

JSON200 OK
{
  "success": true,
  "id": "101",
  "status": "delivered",
  "sent_at": "2026-04-29 10:01:45",
  "failed_reason": null
}

Status Values

StatusDescription
pendingWaiting to be picked up by a device.
processingClaimed by a device, currently being sent.
sentHanded off to the carrier.
deliveredCarrier delivery confirmation received.
failedSend failed. Check failed_reason.
cancelledCancelled by the user via the web panel.