The response from the API changes depending on whether you sent a single message or a batch of message, please refer to the appropriate section below:
Single Submission Response Details
Successful Submission Response
Upon a successful send to the "One" API you will receive a HTTP 201 and a JSON body in the following format:
Property | Type | Description |
---|---|---|
messageId | string | Unique id for this message |
sentOn | string | Date/Time (in UTC, ISO 8601 format) that the message sent was accepted |
status | string | One of: processing failed * sent |
statusDetails | object | Specific details related to the current status. |
_createdOn | string | Date/Time (in UTC, ISO 8601 format) that the message was created |
_createdBy | string | The profile id that created the message |
_updatedOn | string | Date/Time (in UTC, ISO 8601 format) that the message was last updated |
_updatedBy | string | The profile id that last updated the message |
{
"_createdOn": "2017-03-17T14:22:40.633Z",
"_updatedOn": "2017-03-17T14:22:40.633Z",
"_createdBy": "access:3dd1558a-9db3-406a-8460-cbe5100a7628",
"_updatedBy": "access:3dd1558a-9db3-406a-8460-cbe5100a7628",
"to": {
"phoneNumber": "447123123123"
},
"senderProfileId": "M0rsy",
"body": "I love Comapi",
"rules": [
"sms"
],
"sentOn": "2017-03-17T14:22:40.627Z",
"channelOptions": {
"sms": {
"from": "Comapi",
"allowUnicode": false
}
},
"status": "processing",
"statusDetails": {
"channelId": "sms"
},
"messageId": "d8e296bb-97c4-4495-b98f-1e32e0b11628"
}
Failed Submission
If there are issues with the submitted request a HTTP 400 will be returned with the body describing the validation errors.
Getting the final status for a message
Once submitted Comapi will process your message and try to deliver it down one of the channels specified. It is still possible the message can fail at this stage if no channels accept the message. To find the final status of a message you can query it using the Get Status method, or register a Webhook to have data pushed to your systems.
Full API Specification
Please see the full API specification for further details about sending messages with the "One" API
Batch Submission Response Details
Successful Submission Response
Upon a successful send to the "One" API you will receive a HTTP 202 and a JSON body. The JSON will be an array of objects in the following format, one for each message submitted in the batch:
Property | Type | Description |
---|---|---|
index | int | The index of the message send request in the original batch submission this response is for |
messageId | string | The unique identifier for the message. This id can be used to request status details and correlate inbounds and receipts to the original message |
Whats happens after sending a batch of messages
The messages will be processed as fast as possible after submission but it may take a few seconds before this process is finished and the message if available for status updates. You can get updates on your messages statuses asynchronously using our webhooks system.
[
{
"index": 0,
"messageId": "58bde0da-b380-4cb2-8dd1-ca74fc7a0cda"
},
{
"index": 1,
"messageId": "0aee96a8-09c9-4192-bf6d-c5f20a323956"
}
]
Failed Submission
If there are issues with the submitted request a HTTP 400 will be returned with the body describing the validation errors.
Full API specification
Please see the full API specification for further details about sending messages with the "One" API