Mark Delivered

Mobile App Integration Guide

Mark Delivered

POST /?endpoint=mark_delivered

Reports a carrier delivery receipt. If mark_sent was already called, the delivered_count is not double-counted.

Request Body

FieldTypeDescription
idinteger required Queue message ID.

Example Request

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

Response

JSON200 OK
{"success": true, "message": "Marked as delivered"}
*
mark_sent already increments delivered_count in the campaign. Calling mark_delivered afterward does not double-count �it only transitions the queue status to delivered.