This web service generates an XML document that contains information about packages that have been signed, viewed, rejected, or archived on the given date. The packages in the XML are separated with one element per customer containing multiple packages. Each package's element contains the ID, along with the created date or completed date, if present.
| Parameter | Type | Requirement | Description |
|---|---|---|---|
| username | xsd:string | mandatory – cannot be null or empty | The username of the registered user who is requesting the data extraction (special privilege required) |
| password | xsd:string | mandatory – cannot be null or empty | The password of the registered user who is requesting the data extraction |
| encodedPassword flag | xsd:boolean | optional – can be null (indicates false) | Indicates whether the password parameter is MD5 encoded |
| extraction date | xsd:date | mandatory – cannot be null or empty | the date for which the data is to be extracted |
| group ID | xsd:string | a value indicates data required for a single skin; null indicates data required for all skins | the skin ID for which data is required (null indicates all skins required) |
Example XML output
<?xml version="1.0" encoding="UTF-8" ?> <packagedeliveryextract> <customer id="7"> <package> <id>0</id> <createddate>20120508000000</createddate> <completiondate></completiondate> </package> </customer> </packagedeliveryextract>