Dispatch messages info

GET /v1/api/dispatch/{dispatchId}

It returns details of a specific dispatch. The response includes an array of individual messages that have been processed, along with a pendingCount property indicating the quantity of messages that remain in the processing queue.

Responses

GET /v1/api/dispatch/{dispatchId}
curl \
 --request GET 'https://api.nifteem.com/v1/api/dispatch/{dispatchId}' \
 --header "X-API-Key: $API_KEY"
Response examples (200)
{
  "dispatchId": "string",
  "scheduleDate": "2025-05-04T09:42:00Z",
  "metadata": {
    "additionalProperty1": "string",
    "additionalProperty2": "string"
  },
  "messages": [
    {
      "messageId": "string",
      "sender": "string",
      "channelIdentifier": "string",
      "channel": "RCS",
      "part": 42,
      "totalParts": 42,
      "status": "DISPATCHED",
      "statusDate": "2025-05-04T09:42:00Z"
    }
  ],
  "pendingCount": 42
}