Hi ,
does your WS could be using for tracking statut of multiple fax from their ID?
I give a table of ID and i've in reply of my request all stautus fo both of them.
Regards.
Yes, you can request status for multiple Jobs at the same time.
You didn't say which status function you are using, but here's an example using JobDeliveryStatus:
<soapenv:Envelope> <soapenv:Header> <xoa:Request soapenv:mustUnderstand="0"> <xoa:ReceiverKey>https://premiereconnect.premiereglobal.com/soap/sync</xoa:ReceiverKey> <xoa:Authentication> <xoa:XDDSAuth> <xoa:RequesterID>YOUR_ID</xoa:RequesterID> <xoa:Password>YOUR_PASSWORD</xoa:Password> </xoa:XDDSAuth> </xoa:Authentication> </xoa:Request> </soapenv:Header> <soapenv:Body> <xoa:JobDeliveryStatusRequest> <xoa:JobId> <xoa:XDN>xsi</xoa:XDN> <xoa:MRN>1234567</xoa:MRN> </xoa:JobId> <xoa:JobId> <xoa:XDN>xsi</xoa:XDN> <xoa:MRN>8901234</xoa:MRN> </xoa:JobId> </xoa:JobDeliveryStatusRequest> </soapenv:Body></soapenv:Envelope>
Just make sure you save the XDN and MRN of all of the jobs you want to request status for, since the XDN may vary.