POST api/mobility/SendVernacularSMS
Request Information
URI Parameters
None.
Body Parameters
SendSmsReq| Name | Description | Type | Additional information |
|---|---|---|---|
| PhoneNumber | string |
None. |
|
| Message | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PhoneNumber": "sample string 1",
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<SendSmsReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObjects"> <Message>sample string 2</Message> <PhoneNumber>sample string 1</PhoneNumber> </SendSmsReq>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SendSMSResponseDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | string |
None. |
|
| ResponseMsg | string |
None. |
|
| CorrelationId | string |
None. |
|
| ResponseDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": "sample string 1",
"ResponseMsg": "sample string 2",
"CorrelationId": "sample string 3",
"ResponseDescription": "sample string 4"
}
application/xml, text/xml
Sample:
<SendSMSResponseDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessObjects"> <CorrelationId>sample string 3</CorrelationId> <ResponseCode>sample string 1</ResponseCode> <ResponseDescription>sample string 4</ResponseDescription> <ResponseMsg>sample string 2</ResponseMsg> </SendSMSResponseDTO>