GET api/Delivery/GetDelivery?MessageId={MessageId}

This is a delivery callback url of currently submitted text Message.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
MessageId

string

Required

Body Parameters

None.

Response Information

Resource Description

DLResponse
NameDescriptionTypeAdditional information
ResponseCode

string

None.

ResponseMessage

string

None.

Data

DLRData

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": "sample string 1",
  "ResponseMessage": "sample string 2",
  "Data": {
    "MessageID": "sample string 1",
    "SMSCID": "sample string 2",
    "Org": "sample string 3",
    "Dest": "sample string 4",
    "Status": "sample string 5"
  }
}

application/xml, text/xml

Sample:
<DeliveryModels.DLResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/sms_api.Models">
  <Data>
    <Dest>sample string 4</Dest>
    <MessageID>sample string 1</MessageID>
    <Org>sample string 3</Org>
    <SMSCID>sample string 2</SMSCID>
    <Status>sample string 5</Status>
  </Data>
  <ResponseCode>sample string 1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
</DeliveryModels.DLResponse>