Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 

   <soapenv:Header/>
   <soapenv:Body>
      <ser:status>
         <username>?</username>
         <password>?</password>
         <documentId>?</documentId>
      </ser:status>
   </soapenv:Body>
</soapenv:Envelope>

 

What information to return?

For the REST endpoint (JSON)

  If documentId does exist

{
    "documentId": "4fbb6c371a88393bc47baf32",
    "recipient": "48660703691",
    "messageStatus": "10"
}
 

 for  when documentId does not exist

{
    "documentId": "4fbb6c371a88393bc47baf32",
    "messageStatus": "0"
}


Note that we only guarantee to hold message for status query for 40 hours after message send datetime.

For the SOAP endpoint (XML):

 

   <soap:Body>
         <return>            
        <documentId>4fbb6cd21a88393bc47baf33</documentId>            
            <recipient>48660703691</recipient>
            <messageStatus>10</messageStatus>
         </return>
   </soap:Body>
</soap:Envelope>

 

Status codes
Anchor
Status_codes
Status_codes

...