SMS Api

<back to all web services

SubmitMulti

HTTP + XML

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

<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>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<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>