PUT v1/Clients/{clientId}/WorkOrders/{workOrderId}
Updates a Work Order based on the provided information.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
Client identifier. |
globally unique identifier |
Required |
| workOrderId |
The work order id |
integer |
Required |
Body Parameters
The work order.
WorkOrderUpdateV1| Name | Description | Type | Additional information |
|---|---|---|---|
| DateWorkCompleted |
The Date Work Completed. |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"DateWorkCompleted": "2025-11-04T17:57:54.6049169+00:00"
}
application/xml, text/xml
Sample:
<WorkOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models.Maintenance"> <DateWorkCompleted>2025-11-04T17:57:54.6049169+00:00</DateWorkCompleted> </WorkOrder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A indicating whether or not the Work Order was updated successfully.
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>