API documentation
Method list
Test your request
Changelog


getInventoryDocuments
This method allows you to retrieve a list of inventory documents from BaseLinker. It supports pagination and optional filtering by document type, date range, etc.


Input parameters
filter_document_idint(optional) A specific inventory document ID.
filter_document_typeint(optional) The document type, consistent with the "type" field in the inventory_documents table.
filter_document_statusint(optional) The document status.
0 - Draft
1 - Confirmed
filter_date_fromint(optional) The minimum creation date (in Unixtime) to filter by.
filter_date_toint(optional) The maximum creation date (in Unixtime) to filter by.
filter_warehouse_idint(optional) The warehouse ID.
pageint(optional) Page number of the results (e.g. 1, 2, 3...). Maximum 100 documents per page.



Output data
The method returns the data in JSON format.
statusvarchar(30)"SUCCESS" - request executed correctly
ERROR - an error occurred during an API request. Error details will be described in 2 additional returned fields: error_message and error_code
documentsarrayAn array of inventory documents matching the filters. Each element of the array contains the fields below.
| - document_idintThe unique identifier of the inventory document.
| - document_typeintThe document type
0 - GR (Goods Received)
1 - IGR (Internal Goods Received)
2 - GI (Goods Issue)
3 - IGI (Internal Goods Issue)
4 - IT (Internal Transfer)
5 - OB (Opening Balance)
| - document_statusintThe document status.
0 - Draft
1 - Confirmed
| - directionintThe document direction (e.g. 0 = incoming, 1 = outgoing, if applicable).
| - document_series_idintThe ID of the document series.
| - full_numbervarchar(30)The full document number.
| - date_createdintThe creation date of the document in Unix time.
| - date_confirmedintThe confirmation date in Unix time. 0 if the document has not been confirmed.
| - warehouse_idintThe main warehouse ID used for this document.
| - warehouse_id2intThe second (destination) warehouse ID for transfers.
| - items_countintNumber of items in the document.
| - total_quantityintTotal quantity of products in the document.
| - total_pricedecimal(10,2)Total value (price) for the entire document.



Sample
Input data:
Output data:
A sample request in PHP: