Fracttal →

Query incoming transaction

This EndPoint can be used to query the entries of a warehouse made during a period of time.

Input parameters

ParámetroTipoRequeridoDescripción
warehouse_codeTextyesWarehouse Code
sinceTextOptionalInitial date of the query. Format: 'YYYYY-MM-DDTHH:MM:SS-UTC' Example: '2016-07-12T20:00:00-03'. (Default 30 days before)
untilTextOptionalEnd date of the query. Format: 'YYYYY-MM-DDTHH:MM:SS-UTC' Example:'2016-07-12T20:00:00-03'. (Defaults to the current date.
pageIntegerOptionalPage number to consult.
startIntegerOptionalInitial record number to be displayed by the query.
limitIntegerOptionalFinal record number to be returned by the query.

Output parameters

ParameterTypeDescription
id_movementIntegerId of the movement
folio_sourceTextSource warehouse movement ID
folio_targetTextDestination warehouse movement ID
dateDateDelivery date
descriptionTextDescription of the entry.
documentTextReference
movements_types_descriptionTextType of Movement
movements_states_descriptionTextDescription of the movement status
warehouses_source_descriptionTextWarehouse source
third_parties_nameTextName of third party
costs_center_descriptionTextCost Center
responsible_descriptionTextResponsible
priorities_descriptionTextPriority
date_createTextDate of creation of the movement
third_parties_codeTextThird party code
third_parties_addressTextAddress of the third party
third_parties_telephone_1TextPhone 1 of the third party
third_parties_telephone_2TextPhone 2 of the third
third_parties_emailTextThird party email
number_detailsNumberNumber of movement items

Example:

Petition: (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