Using this API you can update the note of a work order in process or IN review.
PUT method
EndPoint
https://app.fracttal.com/api/work_orders/:id_wo
id_wo = id of the WO in Fracttal
Parameters Input
Body
Parameter | Field type | Required | Description |
note | Text | Yes | WO Note |
account_code | Text | Yes | Fracttal User Account Code |
Output parameters
Parameter | Field type | Description |
wo_folio | Text | TO ID |
personnel_description | Text | Responsible for the TO |
created_by | Text | TO Creator |
note | Texto | Note |
tasks_duration | Integer | Duration in seconds of the TO |
Output parameters
Example:
Example Request: (PUT) https://app.fracttal.com/api/work_orders/OT-1496
Body:
{
"note":" New note via API ",
"account_code":"32322"
}
Response:
{
"success": true,
"message": "200",
"data": {
"wo_folio": "OT-1496",
"personnel_description": "Marta Jaramillo",
"tasks_duration": 600,
"created_by": "Laura Marcela Peña Jaramillo",
"note": " New note via API "
},
"total": 1
}