Mark Processing
Mobile App Integration Guide
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
| Field | Type | Description | |
|---|---|---|---|
| id | integer | 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"}