PUT v1/Clients/{clientId}/WorkOrders/{workOrderId}

Updates a Work Order based on the provided information.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

Client identifier.

globally unique identifier

Required

workOrderId

The work order id

integer

Required

Body Parameters

The work order.

WorkOrderUpdateV1
NameDescriptionTypeAdditional information
DateWorkCompleted

The Date Work Completed.

date

None.

Request Formats

application/json, text/json

Sample:
{
  "DateWorkCompleted": "2025-05-13T10:11:56.0315574+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-05-13T10:11:56.0315574+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.

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>