Query Movements Details

Through this EndPoint you can see the details of a warehouse movement.

To perform this query, the number of the movement to be queried must be known. This number can be known through the APIS for incoming and outgoing movement queries.

Input parameters

Parameter Type Requierd Description
id_movement *Text* Optional Id of the movement
since *Text* Optional Initial date of the query. Format: 'YYYYY-MM-DDTHH:MM:SS-UTC' Example: '2016-07-12T20:00:00-03'. (Default 30 days before)
until *Text* Optional End date of the query. Format: 'YYYYY-MM-DDTHH:MM:SS-UTC' Example:'2016-07-12T20:00:00-03'. (Defaults to the current date.
type_date *Text* Optional Type of date to make the query. It can be :
Value Description
date Date of the transaction (Default value)
date_create Date of creation of the transaction
.
start *Integer* Optional Initial record number to be displayed by the query.
limit *Integer* Optional Final record number to be returned by the query.

Output parameters

Parameter Type Description
id_movement *Integer* Id of the movement
qty *Number* Quantity
unit_cost *Number* Unit Cost
total_cost *Number* Total Cost.
items_description *Text* Item description
is_serial_control *Boolean* It is controlled by serial
units_description *Text* Unit
tax_name *Text* Tax
serial_numbers *Text* Serial number
code *Text* Item code
date *Text* Date of movement
date_create *Text* Date of creation of the movement
qty_order *Integer* Total quantity requested in the purchase order related to the material entry. It represents the number of units that were originally ordered.
qty_pending *Integer* Quantity pending in the purchase order that has not yet been processed, dispatched, or completed in the material entry. It corresponds to the units that have not yet been fulfilled with respect to the total requested.
id_responsible *Integer* Unique identifier of the responsible person associated with the record. It is used to reference the responsible party within the system.
responsible *Text* Name or description of the responsible person for the operation or record. It represents the human-readable information of the responsible party.

Example:

Petition: (GET)https://app.fracttal.com/api/warehouse_details_movements/?id_movement=2112

{
    "success": true,
    "message": "200",
    "data": [
        {
            "id": 8890702,
            "id_movement": 5412687,
            "id_company": 1190,
            "id_item": 5295055,
            "qty": 4,
            "unit_cost": 8000,
            "id_taxes": 1,
            "total_cost": 32000,
            "items_description": " CASCO DE PROTECCIÓN { Item-seg-001-Ruben }",
            "is_serial_control": false,
            "units_description": "Unidad",
            "units_code": "Unidad",
            "id_item_original": 30423151,
            "tax_name": "Exempt",
            "item_tax_rate": 0,
            "serial_numbers": null,
            "unit_cost_company": 8000,
            "total_cost_company": 32000,
            "code": "Item-seg-001-Ruben",
            "item_status": 1,
            "date": "2023-08-31",
            "date_create": "2023-08-31T14:07:15.1413+00:00",
            "id_warehouse_source": null,
            "id_warehouse_target": 33483,
            "id_movement_type": 10,
            "qty_order": 1,
            "qty_pending": 1,
            "id_responsible": 111,
            "responsible": "1- Lavadero"
        },
        {
            "id": 8890703,
            "id_movement": 5412687,
            "id_company": 1190,
            "id_item": 5295056,
            "qty": 5,
            "unit_cost": 2500,
            "id_taxes": 1,
            "total_cost": 12500,
            "items_description": " Lentes de seguridad { Item-seg-002-Ruben }",
            "is_serial_control": false,
            "units_description": "Unidad",
            "units_code": "Unidad",
            "id_item_original": 30423172,
            "tax_name": "Exempt",
            "item_tax_rate": 0,
            "serial_numbers": null,
            "unit_cost_company": 2500,
            "total_cost_company": 12500,
            "code": "Item-seg-002-Ruben",
            "item_status": 1,
            "date": "2023-08-31",
            "date_create": "2023-08-31T14:07:15.1413+00:00",
            "id_warehouse_source": null,
            "id_warehouse_target": 33483,
            "id_movement_type": 10,
            "qty_order": 1,
            "qty_pending": 1,
            "id_responsible": 111,
            "responsible": "1- Lavadero"
        }
    ],
    "total": 2
}

Test it

Language