Update the note of an input movement

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

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

Body Parameters

The following information must be sent in the request body.

ParameterTypeRequiredDescription
noteTextYesNote

Output Parameters

ParameterTypeDescription
idIntegerMovement ID
dateDateDelivery date
descriptionTextEntry description.
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_inputs_movements/5511275/

{
    "note": "Test note"
}
{
    "success": true,
    "message": "200",
    "data": {
        "id": 5511275,
        "id_company": 1190,
        "id_movement_type": 1,
        "id_warehouse_source": null,
        "id_warehouse_target": 8941,
        "folio_source": null,
        "folio_target": "120",
        "date": "2023-09-07",
        "description": "Test note",
        "document": "67",
        "id_third_party": null,
        "id_cost_center": null,
        "id_responsible": null,
        "id_movement_state": 1,
        "id_priority": null,
        "movements_types_description": "PURCHASE",
        "movements_states_description": "IN",
        "warehouses_source_description": null,
        "warehouses_target_description": "ALAMCEN DE BOMBEROS",
        "third_parties_name": null,
        "costs_center_description": null,
        "responsible_code": null,
        "conditions_description": null,
        "priorities_description": null,
        "date_create": "2023-09-07T20:03:11.526394+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": 2,
        "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": 5,
        "id_movement_reference": 5344708,
        "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": null,
        "id_condition": null,
        "warehouses_source_code": null,
        "warehouses_target_code": "BOMBEROS1"
    },
    "total": 1
}
Language