POST api/SendGroupAdSMS

Request Information

URI Parameters

None.

Body Parameters

Collection of Object

None.

Request Formats

application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of SendArraySmsResponse
NameDescriptionTypeAdditional information
BulkCode

string

None.

textcount

string

None.

ErrorMessage

string

None.

IsSuccessfull

boolean

None.

ErrorCode

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BulkCode": "sample string 1",
    "textcount": "sample string 2",
    "ErrorMessage": "sample string 3",
    "IsSuccessfull": true,
    "ErrorCode": 1
  },
  {
    "BulkCode": "sample string 1",
    "textcount": "sample string 2",
    "ErrorMessage": "sample string 3",
    "IsSuccessfull": true,
    "ErrorCode": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfSendArraySmsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <SendArraySmsResponse>
    <BulkCode>sample string 1</BulkCode>
    <ErrorCode>1</ErrorCode>
    <ErrorMessage>sample string 3</ErrorMessage>
    <IsSuccessfull>true</IsSuccessfull>
    <textcount>sample string 2</textcount>
  </SendArraySmsResponse>
  <SendArraySmsResponse>
    <BulkCode>sample string 1</BulkCode>
    <ErrorCode>1</ErrorCode>
    <ErrorMessage>sample string 3</ErrorMessage>
    <IsSuccessfull>true</IsSuccessfull>
    <textcount>sample string 2</textcount>
  </SendArraySmsResponse>
</ArrayOfSendArraySmsResponse>