Skip to main content

Response Body

The response body provides details about the result of a single voice message request.


Parameters​

NameTypeSample ValueDescription
isidString123-abc….-679Unique IntelSend ID returned for each request.
statusStringQUEUED, REJECTEDRequest status. QUEUED if successful; REJECTED if there is an error in the request.
errorCodeInteger00: No error. Non-zero values indicate specific error conditions.
toString13233933379Recipient number (same as in the request).
fromString1234567890Sender number (same as in the request).
uidStringabc-123Unique identifier for tracking (same as in the request).
programIdInteger12345Program ID used to group requests (same as in the request).

🔎 Example JSON Response​

{
"isid": "123-abc-456-789",
"status": "QUEUED",
"errorCode": 0,
"to": "13233933379",
"from": "1234567890",
"uid": "abc-123",
"programId": 12345
}

Pro Tip 💡

Check both the status and errorCode fields for each request to handle success and failure programmatically. The uid can be used to track individual requests.