Scans
← Back to Scans | Service Description (WSDL)
getAwbScannedBoxesXML
Returns the scanned boxes (labels with their scans) for a shipment date (strAwb, YYYY-MM-DD), optionally narrowed by one importer code (strCodeImporter) and one scan type (strTypeScan), authenticated with a bearer token (strToken). Reuses the same logic and permission filtering as the REST endpoint POST /scans/status of the public client, without pagination.
SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /scans/scans.asmx HTTP/1.1
Host: clientsws.avatarflower.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "getAwbScannedBoxesXML"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<getAwbScannedBoxesXML xmlns="http://tempuri.org/">
<strCodeImporter>string</strCodeImporter>
<strAwb>string</strAwb>
<strTypeScan>string</strTypeScan>
<strToken>string</strToken>
</getAwbScannedBoxesXML>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<getAwbScannedBoxesXMLResponse xmlns="http://tempuri.org/">
<getAwbScannedBoxesXMLResult>anyType</getAwbScannedBoxesXMLResult>
</getAwbScannedBoxesXMLResponse>
</soap:Body>
</soap:Envelope>