Update a material requisition

Through this EndPoint you can update the note of a purchase order.

The parameter in the URL id is the id of the requisition movement. It can be consulted here (field id)

Body Parameters

The following information must be sent in the request body.

Parameter

Type

Required

Description

note

Text

Optional

Note

status

Text

Optional

Requisition status (applies only to integrated warehouses and those where the delivered quantity is not integrated). Send 'TOTAL_DELIVERY_BY_INTEGRATION' to indicate that the requisition has been 100% delivered.

Output Parameters

ParameterTypeDescription
idIntegerMovement id
dateDateDate
descriptionTextNote
documentTextReference
id_third_partyTextThird party id
third_parties_nameTextThird party name
third_parties_codeTextThird party code
id_cost_centerTextCost Center Id
costs_center_descriptionTextCost Center description
costs_center_valueTextCost Center value
folio_sourceTextSource warehouse movement id
folio_targetTextTarget warehouse movement id
date_createTextMovement creation date
id_priorityTextPriority Id
priorities_descriptionTextPriority
id_currencyIntegerCurrency id
currency_descriptionTextCurrency description
currency_symbolTextCurrency symbol
movements_states_descriptionTextMovement state description

Example:

Request: (PUT)https://app.fracttal.com/api/warehouse_outputs_movements/5633469

{
    "note": "Test note"
}
{
    "success": true,
    "message": "200",
    "data": {
        "id": 5633469,
        "id_company": 1190,
        "id_movement_type": 5,
        "id_warehouse_source": 33700,
        "id_warehouse_target": null,
        "folio_source": "4",
        "folio_target": null,
        "date": "2023-09-19",
        "description": "api test",
        "document": "SALIDA-001",
        "id_third_party": null,
        "id_cost_center": null,
        "id_responsible": 210943,
        "id_movement_state": 2,
        "id_priority": null,
        "movements_types_description": "GENERAL",
        "movements_states_description": "OUT",
        "warehouses_source_description": "ALMACEN RUBEN S.A",
        "warehouses_target_description": null,
        "third_parties_name": null,
        "costs_center_description": null,
        "responsible_code": "RH-002",
        "conditions_description": null,
        "priorities_description": null,
        "date_create": "2023-09-19T20:59:57.077487+00:00",
        "third_parties_code": null,
        "third_parties_address": null,
        "third_parties_telephone_1": null,
        "third_parties_telephone_2": null,
        "third_parties_email": null,
        "number_details": 1,
        "id_currency": null,
        "exchange_value": 1,
        "currency_description": "Colombian Peso",
        "currency_symbol": "$",
        "id_work_orders_tasks": null,
        "tasks_log_description": null,
        "items_log_description": null,
        "costs_center_value": null,
        "id_accounts_log": null,
        "accounts_log_name": null,
        "id_movement_state_reference": null,
        "id_movement_reference": null,
        "id_accounts": null,
        "approved": null,
        "approved_comment": null,
        "city": null,
        "is_input": null,
        "zip_code": null,
        "state": null,
        "id_item_log": null,
        "id_currency_iso": 51,
        "currency_code": "COP",
        "responsible_description": "Pepito perez",
        "id_condition": null,
        "warehouses_source_code": "ALM-RUBEN",
        "warehouses_target_code": null
    },
    "total": 1
}
Language