Mark Sent

Mobile App Integration Guide

Mark Sent

POST /?endpoint=mark_sent

Reports that a message was successfully handed off to the carrier. Also increments the campaign sent_count and delivered_count (delivery receipts are carrier-unreliable, so sent implies delivered).

Request Body

FieldTypeDescription
idinteger required Queue message ID.

Example Request

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

Response

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