Operation Id:
orders/exportdocuments/EPP/get [Official Documentaction]
Methods
- dateBegin String
- dateEnd String
- applicationType 'SubiektGT'|'Rachmistrz'|'wFirma'
- stocks Array<Integer>
- documentType 'all'|'stocks'|'invoice'|'payments'
- invoiceFirstGeneratedDate Integer
Examples
This function retrieves the stock levels of the products with IDs 1, 2, and 3 for export documents in the getOrdersExportdocumentsEPP module.
const result = await idosellRequest.getOrdersExportdocumentsEPP
.stocks([1,2,3])
.exec()
This function retrieves export documents related to SubiektGT application type orders.
const result = await idosellRequest.getOrdersExportdocumentsEPP
.applicationType("SubiektGT")
.exec()
This function retrieves all export documents for orders.
const result = await idosellRequest.getOrdersExportdocumentsEPP
.documentType("all")
.exec()
This function retrieves export documents for orders between January 1, 2023 and January 10, 2023.
const result = await idosellRequest.getOrdersExportdocumentsEPP
.dates("2023-01-01", "2023-01-10")
.exec()