Through this web service the ordinary hours values that the different inhouse personnel have can be updated.
EndPoint
https://app.fracttal.com/api/hourly_rates/{id}
Id = Id of the item within Fracttal
Method
PUT
Input Parameters in the Body
(Send only the parameters that you want to update)
Parameter | Type of field | Description |
value | Real | Cost of the hour |
description | Text | Description of the hour |
Output parameters
Parameter | Type of field | Description |
id | Entire | Record id |
value | Real | Value of the hour |
description | Text | Description of the hour |
Example:
Petition: https://app.fracttal.com/api/hourly_rates/47
Body:
{ "value":"5420" }
Example Response:
{
"success": true,
"message": "200",
"data": {
"id": 47,
"id_company": 133,
"description": "ASISTENTE DE MECANICO",
"value": 5420
},
"total": 1
}