POST api/Sms
Request Information
URI Parameters
None.
Body Parameters
SmsDto| Name | Description | Type | Additional information |
|---|---|---|---|
| FromNumber | string |
None. |
|
| Messages | Collection of SmsMessageDto |
Required |
Request Formats
application/json, text/json
Sample:
{
"FromNumber": "sample string 1",
"Messages": [
{
"Content": "sample string 1",
"ToNumber": "sample string 2"
},
{
"Content": "sample string 1",
"ToNumber": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<SmsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Sms.Models">
<FromNumber>sample string 1</FromNumber>
<Messages>
<SmsMessageDto>
<Content>sample string 1</Content>
<ToNumber>sample string 2</ToNumber>
</SmsMessageDto>
<SmsMessageDto>
<Content>sample string 1</Content>
<ToNumber>sample string 2</ToNumber>
</SmsMessageDto>
</Messages>
</SmsDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.