CoworkerTasks
Update CoworkerTask
Update an existing CoworkerTask record.
PUT
Update CoworkerTask
Updates an existing CoworkerTask record. You must include the
Id of the record to update along with all required fields.
Authentication
This endpoint requires OAuth2 authentication. Include a valid bearer token in the
Authorization header.
The authenticated user must be a full unrestricted administrator or have the CoworkerTask-Edit role.Request Body
Required Fields
integer
required
The Id of the CoworkerTask record to update.
integer
required
ID of the location that owns this task..
integer
required
ID of the customer this task concerns..
string
required
Required task title..
integer
required
ID of the admin user responsible for completing this task; required when creating a task..
Optional Fields
string
Optional instructions or context for completing the task..
string
Internal correlation GUID for the task-list item that created this task; managed by the originating workflow..
boolean
Whether the task is complete; completed tasks are excluded from reminder processing and each user’s active-task list..
string
Optional due date and time stored in UTC; an email reminder becomes eligible at or after this time when notifications are enabled..
boolean
Internal flag indicating that the due-date email reminder was queued; task updates reset it to false..
boolean
Whether to send the responsible admin an email reminder once the due date is reached; no reminder is sent without a due date..
boolean
Whether the task appears in every admin user’s active-task list instead of only the responsible admin’s list..
Code Examples
Response
200
integer
HTTP status code.
200 on success.string
A human-readable message confirming the update.
object
Contains the
Id of the updated record.boolean
true if the coworkertask was updated successfully.array
null on success.Example Response
400
string
A summary of the validation error(s), in the format
PropertyName: error message.any
null on validation failure.object[]
Array of validation errors.
boolean
false when the request fails validation.Example Response