Sales
List available invoices
Gets a list of invoices created in the system for your company.
get/sales
Query parameters
documentsPerPage'10' | '20' | '50' | '100'
Defines the amount of invoices polled per page
pageNumberstring
Defines the page we want to poll
sortBy'INVOICE_NUMBER' | 'ISSUE_DATE' | 'SALE_DATE' | 'DUE_DATE' | 'AMOUNT_GROSS' | 'CONTRACTOR_NAME'
Example:ISSUE_DATE
order'ASC' | 'DESC'
Example:DESC
searchPhrasestring
Freetext search over concatenated fields InvoiceNumber, ContractorName, ContractorTIN and ContractorCity
contractorNamestring
paymentStatus'PAID' | 'UNPAID' | 'OVERDUE'
Example:OVERDUE
Response
OK
Example response
{
"result": "OK",
"data": {
"invoices": [
{
"basicInformation": {
"invoiceType": "SALES"
}
}
]
}
}