SMS Api

<back to all web services

SubmitMulti

HTTP + SOAP11

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/syncreply/SubmitMulti HTTP/1.1 
Host: api.postacell.net 
Content-Type: application/xml
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>

<SubmitMulti xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="SmsApi">
  <Credential>
    <Password>String</Password>
    <Username>String</Username>
  </Credential>
  <DataCoding>Default</DataCoding>
  <Envelopes>
    <Envelope>
      <Message>String</Message>
      <To>String</To>
    </Envelope>
  </Envelopes>
  <Header>
    <From>String</From>
    <ScheduledDeliveryTime i:nil="true" />
    <ValidityPeriod>0</ValidityPeriod>
  </Header>
</SubmitMulti>

    </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>

<SubmitMultiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="SmsApi">
  <Response>
    <MessageId>0</MessageId>
    <Status>
      <Code>0</Code>
      <Description>String</Description>
    </Status>
  </Response>
</SubmitMultiResponse>

    </soap:Body>
</soap:Envelope>