Query incoming transaction

Through this EndPoint, you can query all entries of a warehouse or get the details of a specific entry movement.

Input Parameters

You can filter the information using the following query_params:

ParameterTypeRequiredDescription
idIntegerOptionalID of the entry-type movement in Fracttal. Can be retrieved from this same endpoint. (field id_movement)
warehouse_codeTextOptionalWarehouse code. Can be checked here. (field code)
sinceTextOptionalStart date of the query. Format: 'YYYY-MM-DDTHH:MM:SS-UTC' Example: '2016-07-12T20:00:00-03'. (Default is 30 days prior)
untilTextOptionalEnd date of the query. Format: 'YYYY-MM-DDTHH:MM:SS-UTC' Example: '2016-07-12T20:00:00-03'. (Default is the current date)
pageIntegerOptionalPage number to be queried.
startIntegerOptionalRecord number where the query should start. Default is 0. All queries are limited to 100 records. When there are more than 100, this parameter must be used for pagination.
limitIntegerOptionalNumber of records returned by the request. Default value is 100.

Output Parameters

ParameterTypeDescription
id_movementIntegerMovement ID
folio_sourceTextSource warehouse movement ID
folio_targetTextTarget warehouse movement ID
dateDateDelivery date
descriptionTextEntry description.
documentTextReference
movements_types_descriptionTextMovement type
movements_states_descriptionTextMovement state description
warehouses_source_descriptionTextSource warehouse description
warehouses_source_codeTextSource warehouse code
third_parties_nameTextThird-party name
costs_center_descriptionTextCost Center
responsible_descriptionTextResponsible person
priorities_descriptionTextPriority
date_createTextMovement creation date
third_parties_codeTextThird-party code
third_parties_addressTextThird-party address
third_parties_telephone_1TextThird-party phone 1
third_parties_telephone_2TextThird-party phone 2
third_parties_emailTextThird-party email
number_detailsNumberNumber of movement details
currency_descriptionIntegerCurrency description from the purchase order
currency_symbolIntegerCurrency symbol from the purchase order

Example:

Request: (GET) https://app.fracttal.com/api/warehouse_inputs_movements/warehouse_code=CAMTOL001

{
    "success": true,
    "message": "200",
    "data": [
        {
            "id_movement": 2112,
            "folio_source": null,
            "folio_target": "5",
            "date": "2018-05-02",
            "description": "Entrada por Orden de Compra (3)",
            "document": "3",
            "movements_types_description": "PURCHASE",
            "movements_states_description": "IN",
            "warehouses_source_description": null,
            "warehouses_target_description": "ALMACEN CAMIONES TOLVA",
            "third_parties_name": "SERVICIOS Y MECANIZADOS LTDA.",
            "costs_center_description": "Instalacion de faenas, energia y servicios.",
            "responsible_description": " ",
            "conditions_description": null,
            "priorities_description": null,
            "date_create": "2018-05-02T16:12:03.978386+00:00",
            "third_parties_code": "76288350-3",
            "third_parties_address": null,
            "third_parties_telephone_1": null,
            "third_parties_telephone_2": null,
            "third_parties_email": null,
            "number_details": 3,
            "currency_description": "PESO CHILENO",
            "currency_symbol": "$",
            "id_company": 133
        }
    ],
    "total": 1
}}

Test it

Language