SMS Api

<back to all web services

GetBalanceLog

HTTP + XML

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

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

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

<GetBalanceLogResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="SmsApi">
  <Response>
    <BalanceLogs>
      <List>
        <BalanceLogItem>
          <Balance>0</Balance>
          <Cost i:nil="true" />
          <CurrentBalance>0</CurrentBalance>
          <Explanation>String</Explanation>
          <Id>0</Id>
          <Timestamp>0001-01-01T00:00:00</Timestamp>
          <Type>Credit</Type>
        </BalanceLogItem>
      </List>
    </BalanceLogs>
    <Status>
      <Code>0</Code>
      <Description>String</Description>
    </Status>
  </Response>
</GetBalanceLogResponse>