Introduction
At the end of the processing the web service ProcessPurchaseInvoices method generates a response XML document that contains the processing status and the possible validation notifications. This XML document is specified in a XML scheme (XSD) and can be processed by your application.
Example of web service response
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<ProcessPurchaseInvoicesResponse xmlns="http://www.theyukicompany.com/">
<ProcessPurchaseInvoicesResult>
<PurchaseInvoicesImportResponse xmlns="urn:xmlns:http://www.theyukicompany.com:purchaseinvoicesresponse">
<TimeStamp xmlns="">2023-01-03</TimeStamp>
<AdministrationId xmlns="">...</AdministrationId>
<TotalSucceeded xmlns="">1</TotalSucceeded>
<TotalFailed xmlns="">0</TotalFailed>
<TotalSkipped xmlns="">0</TotalSkipped>
<Invoice xmlns="">
<Succeeded>true</Succeeded>
<Processed>true</Processed>
<Reference>200052</Reference>
<Subject>200052</Subject>
<Contact>Leverancier USD</Contact>
<Message/>
</Invoice>
</PurchaseInvoicesImportResponse>
</ProcessPurchaseInvoicesResult>
</ProcessPurchaseInvoicesResponse>
</soap:Body>
</soap:Envelope>
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article