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
Output data:
A sample request in PHP:
filter_document_id | int | (optional) A specific inventory document ID. |
filter_document_type | int | (optional) The document type, consistent with the "type" field in the inventory_documents table. |
filter_document_status | int | (optional) The document status. 0 - Draft 1 - Confirmed |
filter_date_from | int | (optional) The minimum creation date (in Unixtime) to filter by. |
filter_date_to | int | (optional) The maximum creation date (in Unixtime) to filter by. |
filter_warehouse_id | int | (optional) The warehouse ID. |
page | int | (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.
status | varchar(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 |
documents | array | An array of inventory documents matching the filters. Each element of the array contains the fields below. |
| - document_id | int | The unique identifier of the inventory document. |
| - document_type | int | The 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_status | int | The document status. 0 - Draft 1 - Confirmed |
| - direction | int | The document direction (e.g. 0 = incoming, 1 = outgoing, if applicable). |
| - document_series_id | int | The ID of the document series. |
| - full_number | varchar(30) | The full document number. |
| - date_created | int | The creation date of the document in Unix time. |
| - date_confirmed | int | The confirmation date in Unix time. 0 if the document has not been confirmed. |
| - warehouse_id | int | The main warehouse ID used for this document. |
| - warehouse_id2 | int | The second (destination) warehouse ID for transfers. |
| - items_count | int | Number of items in the document. |
| - total_quantity | int | Total quantity of products in the document. |
| - total_price | decimal(10,2) | Total value (price) for the entire document. |
Sample
Input data:Output data:
A sample request in PHP: