Mark Processing

Mobile App Integration Guide

Mark Processing

POST /?endpoint=mark_processing

Marks a single queued message as currently being processed. Useful when the app wants to lock a message before calling the SMS API.

Request Body

FieldTypeDescription
idinteger required Queue message ID (from pending_messages).

Example Request

cURL
curl -X POST "https://api.rcszilla.com/?endpoint=mark_processing" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR-DEVICE-TOKEN" \
  -d '{"id": 101}'

Response

JSON200 OK
{"success": true, "message": "Marked as processing"}