Update a resource using its ID.
Security
BearerAuth
PATCH
curl -i -X PATCH \
'https://api.luminovo.com/manufacturing/resource/{id}' \
-H 'Accept: application/api.luminovo.manufacturing.resource-v1+json' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"internal_number": "string",
"type": null,
"cost_per_hour": null,
"description": "string",
"status": null,
"site_id": null
}'Successful response
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "internal_number": "string", "description": "string", "type": "Machine", "cost_per_hour": { "converted_mv": { … } }, "status": "Active", "site_id": "72771e6a-6f5e-4de4-a5b9-1266c4197811" }