Skip to main content

📤 Response Body

When you send an email request, the API responds with the following fields:


📝 Parameters

NameTypeSample ValueDescription
isidString123-abc-xyz-679IntelSend ID: Unique UUID returned in all responses.
statusStringQUEUED / REJECTED- QUEUED → Request is valid and queued for delivery.
- REJECTED → Request body contained an error.
errorCodeInteger00 = No error. Any other code represents a specific error condition.
toStringabc@gmail.comSame as in request.
fromStringinfo@xyz.comSame as in request.
uidStringabc-123Same as in request.
programIdInteger12345Same as in request.

✅ Example Success Response

{
"isid": "123-abc-xyz-679",
"status": "QUEUED",
"errorCode": 0,
"to": "abc@gmail.com",
"from": "info@xyz.com",
"uid": "abc-123",
"programId": 12345
}

❌ Example Error Response

{
"isid": "123-abc-xyz-679",
"status": "REJECTED",
"errorCode": 102,
"to": "invalid_email",
"from": "info@xyz.com",
"uid": "abc-123",
"programId": 12345
}

Note

The errorCode helps identify why a request failed.
Refer to the Error Codes section for a complete list of possible values.