GET api/FinancialEntry/InvoiceStatus?DebtorNumber={DebtorNumber}&InvoiceNumber={InvoiceNumber}
Get Status of an invoice
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
DebtorNumber |
required |
string |
Required |
InvoiceNumber |
required |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Invoice Payment Status
InvoicePaymentStatusName | Description | Type | Additional information |
---|---|---|---|
InvoiceAmount | decimal number |
None. |
|
ReceiptPaid | decimal number |
None. |
|
PaidInFull | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "InvoiceAmount": 1.1, "ReceiptPaid": 1.1, "PaidInFull": true }
application/xml, text/xml
Sample:
<InvoicePaymentStatus xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <InvoiceAmount>1.1</InvoiceAmount> <ReceiptPaid>1.1</ReceiptPaid> </InvoicePaymentStatus>