Get campaign reports
Retrieve delivery results in batches using the campaign ID.
POSThttps://api.quantumtec.eu/v1/sms/report/bulk
POST: X-ApiKey headerAuthentication
Request body| Parameter | Description |
|---|
bulkIdstringrequired | Campaign ID returned when sending. |
Limitintegeroptional | Maximum reports to return. Default: 50. Maximum: 500. |
curl --request POST 'https://api.quantumtec.eu/v1/sms/report/bulk' \
--header 'X-ApiKey: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data '{
"bulkId": "1545e7e0-ad73-1f42-831a-5345bd11d5b4",
"Limit": 50
}'
Response| Parameter | Description |
|---|
bulkIdstring | Campaign identifier. |
statusinteger | Campaign processing status, 1–12. |
deliveryResultsarray | Delivery reports in this batch; the record fields are listed below. |
{
"bulkId": "1545e7e0-ad73-1f42-831a-5345bd11d5b4",
"status": 9,
"deliveryResults": [
{
"messageId": "19905880-9404-4686-a8af-54af8888b96d",
"to": 37250000000,
"partId": "300000005",
"state": 2,
"delivered": "2026-09-01T10:00:02.000Z",
"errorCode": "000"
}
]
}
Delivery result fields| Parameter | Description |
|---|
messageIdstring | Message identifier. |
tonumber | Recipient number in the published response example. |
partIdstring | Identifier of an SMS part. |
stateinteger | Delivery state, 2–8. |
deliveredstring | Time the delivery report was received, in UTC. |
errorCodestring | Operator error code; not supported by every operator. |