Tasks

This resource represents a task that is created within a workspace.

Note that Tasks are available for workspaces that have the Tasks App enabled.

Properties

id string
The id of the task.

archivedBy string
The uuid of the user who archived the task.

archivedDate string
The date the task was archived in RFC3339 format.

internalUserId string
The uuid of the internal user whom this task is assigned to, empty if task is not assigned to internal user (see clientId/companyId fields instead).

clientId string
The uuid of the client user whom this task is assigned to, empty if task is not assigned to client user (see internalUserId/companyId fields instead).

companyId string
The uuid of the company whom this task is assigned to, empty if task is assigned to an internal user, if clientId is not empty this company uuid is the client’s company id.

completedBy string
The uuid of the user who completed the task.

completedByUserType string
The type of user who completed the task.

completedDate string
The date the task was completed in RFC3339 format.

createdBy string
The uuid of the user who created the task.

createdDate string
The date the task was created in RFC3339 format.

creatorType string
The type of user who created the task.

deletedBy string
The uuid of the user who deleted the task.

deletedDate string
The date the task was deleted in RFC3339 format.

description string
The description of the task in HTML format.

dueDate string
The date the task is due in RFC3339 format.

isArchived boolean
Whether or not the task has been archived.

isDeleted boolean
Whether or not the task has been deleted.

label string
The label for the task, e.g. OUT-123.

name string
The name of the task, also known as the title.

object string
Object type [task].

parentTaskId string
The parent task id of the task, if task is a subtask.

source string
The source of where the task was created from, web (webapp) or api.

status string
The status of the task, one of todo, inProgress, or completed.

templateId string
The template id this task was created from. Empty if task was not created from a template.

{
    "archivedBy": null,
    "archivedDate": null,
    "clientId": "9eee4ba8-0b5e-47c6-8a4b-53022fbc7875",
    "companyId": "122341fa-wgj5-32hn-34hs-9023jnmgas0b",
    "internalUserId": null,
    "completedBy": null,
    "completedByUserType": null,
    "completedDate": null,
    "createdBy": "27024189-ea18-40a7-a5cf-48579c352dee",
    "createdDate": "2025-05-06T15:22:37Z",
    "creatorType": "internalUser",
    "deletedBy": null,
    "deletedDate": null,
    "description": "Task desc",
    "dueDate": null,
    "id": "eddeb6a1-dfd7-4a60-9c8c-38ceed09bde9",
    "isArchived": false,
    "isDeleted": false,
    "label": "POC-013",
    "name": "Task from marketplace api",
    "object": "task",
    "parentTaskId": null,
    "source": "api",
    "status": "todo",
    "templateId": null
}