Fracttal →

Update of the note of a WO

This API can be used to update the score of a work order in process or under review.

:wo_folio = WO code in Fracttal

Input parameters

ParameterTypeRequiredDescription
noteTextYesNote from the WO.
account_codeTextYesFracttal user account code.

Parámetros de salida

ParameterTypeDescription
wo_folioTextWO Code
personnel_descriptionTextResponsible for the WO
created_byTextWO Creator
noteTextNote
tasks_durationIntegerDuration in seconds of the WO

Example:

Request: (PUT) https://app.fracttal.com/api/work_orders/OT-1496

{
    "note":"Nueva nota mediante API",
    "account_code":"32322"
}
{
    "success": true,
    "message": "200",
    "data": {
        "wo_folio": "OT-1496",
        "personnel_description": "Marta  Jaramillo",
        "tasks_duration": 600,
        "created_by": "Laura Marcela Peña Jaramillo",
        "note": "Nueva nota mediante API"
    },
    "total": 1
}

test It

Language