POST api/SMS/send_sms

Documentation for 'send_sms'.

Request Information

Parameters

NameDescriptionAdditional information
model
Documentation for 'model'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "State": "sample string 1",
  "AuthString": "sample string 2",
  "MobileNo": "sample string 3",
  "TextMessage": "sample string 4",
  "PageUrl": "sample string 5",
  "Event": "sample string 6"
}

application/xml, text/xml

Sample:
<RequestModelSendSMS xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL">
  <AuthString>sample string 2</AuthString>
  <Event>sample string 6</Event>
  <MobileNo>sample string 3</MobileNo>
  <PageUrl>sample string 5</PageUrl>
  <State>sample string 1</State>
  <TextMessage>sample string 4</TextMessage>
</RequestModelSendSMS>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'RequestModelSendSMS'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "AckCode": "sample string 1",
  "Status": "sample string 2",
  "Remarks": "sample string 3",
  "DateOfData": "sample string 4"
}

application/xml, text/xml

Sample:
<ResponseModelSendSMS xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL">
  <AckCode>sample string 1</AckCode>
  <DateOfData>sample string 4</DateOfData>
  <Remarks>sample string 3</Remarks>
  <Status>sample string 2</Status>
</ResponseModelSendSMS>