For the complete documentation index, see llms.txt. This page is also available as Markdown.

Tasks

List Tasks

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pageinteger · int32 · min: 1Optional
perPageinteger · int32 · min: 1 · max: 100Optional
querystringOptional
sortstringOptional
sortDirstring · enumOptionalPossible values:
Responses
200

List of tasks

application/json
totalRowsnumberOptional
pagenumberOptional
perPagenumberOptional
get/tasks

Create Task

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
idstringOptional

The ID of the Task. Ignored when creating & updating tasks.

titlestringOptional

The title of the Task.

dealIdstringOptional

The deal ID this task is associated with

notesstring · nullableOptional

A note about this task

completedboolean · nullableOptional

Whether the task has been completed

Responses
200

Details about the new Task

application/json
idstringOptional

The ID of the Task. Ignored when creating & updating tasks.

titlestringOptional

The title of the Task.

dealIdstringOptional

The deal ID this task is associated with

notesstring · nullableOptional

A note about this task

completedboolean · nullableOptional

Whether the task has been completed

post/tasks

Retrieve Task

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID of the Task

Responses
200

Details about the task

application/json
idstringOptional

The ID of the Task. Ignored when creating & updating tasks.

titlestringOptional

The title of the Task.

dealIdstringOptional

The deal ID this task is associated with

notesstring · nullableOptional

A note about this task

completedboolean · nullableOptional

Whether the task has been completed

get/tasks/{id}

Update Task

put
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID of the Task

Body
titlestringOptional

The title of the Task.

dealIdstringRequired

The deal ID this task is associated with

notesstring · nullableOptional

A note about this task

completedboolean · nullableOptional

Whether the task has been completed

Responses
200

The updated task

application/json
idstringOptional

The ID of the Task. Ignored when creating & updating tasks.

titlestringOptional

The title of the Task.

dealIdstringOptional

The deal ID this task is associated with

notesstring · nullableOptional

A note about this task

completedboolean · nullableOptional

Whether the task has been completed

put/tasks/{id}

Delete Task

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID of the Task

Responses
204

No Content

No content

delete/tasks/{id}

No content

Last updated

Was this helpful?