POST api/SMS/SendSms

Request Information

URI Parameters

None.

Body Parameters

SMSModel_Request
NameDescriptionTypeAdditional information
ID

integer

None.

SMSText

string

None.

ToMobileNo

string

None.

EventID

integer

None.

SentBy

integer

None.

IsScheduled

integer

None.

AppID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "SMSText": "sample string 2",
  "ToMobileNo": "sample string 3",
  "EventID": 4,
  "SentBy": 5,
  "IsScheduled": 6,
  "AppID": 7
}

application/xml, text/xml

Sample:
<SMSModel_Request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DocumentUpload.Core.Model">
  <AppID>7</AppID>
  <EventID>4</EventID>
  <ID>1</ID>
  <IsScheduled>6</IsScheduled>
  <SMSText>sample string 2</SMSText>
  <SentBy>5</SentBy>
  <ToMobileNo>sample string 3</ToMobileNo>
</SMSModel_Request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.