put https://app.fracttal.com/api/work_orders/:wo_folio
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
Parameter | Type | Required | Description |
---|---|---|---|
note | Text | Yes | Note from the WO. |
account_code | Text | Yes | Fracttal user account code. |
Parámetros de salida
Parameter | Type | Description |
---|---|---|
wo_folio | Text | WO Code |
personnel_description | Text | Responsible for the WO |
created_by | Text | WO Creator |
note | Text | Note |
tasks_duration | Integer | Duration 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