SMS Api

<back to all web services

QueryMulti

HTTP + XML

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

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

<QueryMulti xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="SmsApi">
  <Credential>
    <Password>String</Password>
    <Username>String</Username>
  </Credential>
  <MessageId>0</MessageId>
  <Range>
    <Begin i:nil="true" />
    <End i:nil="true" />
  </Range>
</QueryMulti>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<QueryMultiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="SmsApi">
  <Response>
    <Report>
      <List>
        <ReportItem>
          <Coding>Default</Coding>
          <Cost>0</Cost>
          <Count>0</Count>
          <DeliveredCount>0</DeliveredCount>
          <Id>0</Id>
          <Message>String</Message>
          <Received>0001-01-01T00:00:00</Received>
          <Sender>String</Sender>
          <Sent>0001-01-01T00:00:00</Sent>
          <State>Queued</State>
          <UndeliveredCount>0</UndeliveredCount>
        </ReportItem>
      </List>
    </Report>
    <Status>
      <Code>0</Code>
      <Description>String</Description>
    </Status>
  </Response>
</QueryMultiResponse>