Update Line Todo List Item


This request changes a specific item om the the todo list of the selected line.

Resource

PATCH /me/todo_lines/<OID>/<ITEM_OID>

Where OID is the object ID of the phone line and 'ITEM_OID' is the object ID of the list item.

Parameters

None

Payload

Fields

name Patch Operations

comments

replace

communcation

replace

orderNumber

replace

assignedTo

replace

status

replace

startTime

replace

endTime

replace

reminders

add, remove, replace submember

Response

None

Context

Authorization

User

Errors

Example

Request
PATCH https://xelion.nl/api/v1/master/me/todo_lines/1651614/2082029
Payload
{
        "operations": [
            {
            "op": "replace",
            "path": "/comments",
            "value": "call back this person as soon as possible!"
            },
                {
              "op": "add",
              "path": "/reminders/1"
              },
              {
              "op": "replace",
              "path": "/reminders/1/reminderDateEnum",
              "value": "_5_MINUTES"
              }
    ]
}