Task Disposition

A collection of task dispositions that help categorize your tasks.

createdAt
string <date-time>

The date and time the task disposition was created.

name
string <= 255 characters

The disposition’s name (e.g. "Initial Contact").

order
integer

The disposition’s display order within the collection.

taskType
string <= 255 characters

The disposition’s task type (e.g. "Meeting in Person").

updatedAt
string <date-time>

The date and time the task disposition was last updated.

value
string <= 255 characters

The disposition’s value.

{
  • "createdAt": "2019-08-24T14:15:22Z",
  • "name": "string",
  • "order": 0,
  • "taskType": "string",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "value": "string"
}

Task Disposition Relationships

(user (data (object) or links (object)))

The creator of the task disposition. Relationship creator cannot be used as a filter.

Array of links (object) (task)

The tasks made with this disposition. Relationship tasks cannot be used as a filter.

{
  • "creator": {
    },
  • "tasks": [
    ]
}

Task Disposition Resource Metadata

METADATA NAME DESCRIPTION QUERY PARAM
canWrite A boolean value indicating whether the current API user has write access to this resource. provideAuthorizationMeta
canDelete A boolean value indicating whether the current API user has delete access to this resource. provideAuthorizationMeta

⌵ Task Disposition Actions

Get a Collection of Task Dispositions

SecuritybearerAuth
Responses
200

OK

422

JSON error message

get/taskDispositions
Request samples
Response samples
application/vnd.api+json
{
  • "data": [
    ]
}

Create a New Task Disposition

SecuritybearerAuth
Request
Request Body schema: application/vnd.api+json
required
object
Responses
201

Created

422

JSON error message

post/taskDispositions
Request samples
application/vnd.api+json
{
  • "data": {
    }
}
Response samples
application/vnd.api+json
{
  • "data": {
    }
}

Delete an Existing Task Disposition by ID

SecuritybearerAuth
Request
path Parameters
id
required
integer
Responses
204

Deleted

422

JSON error message

delete/taskDispositions/{id}
Request samples
Response samples
application/vnd.api+json
{
  • "errors": [
    ]
}

Get a Task Disposition by ID

SecuritybearerAuth
Request
path Parameters
id
required
integer
Responses
200

OK

404

Not Found

get/taskDispositions/{id}
Request samples
Response samples
application/vnd.api+json
{
  • "data": {
    }
}

Update a Task Disposition

SecuritybearerAuth
Request
path Parameters
id
required
integer
Request Body schema: application/vnd.api+json
required
object
Responses
200

OK

422

JSON error message

patch/taskDispositions/{id}
Request samples
application/vnd.api+json
{
  • "data": {
    }
}
Response samples
application/vnd.api+json
{
  • "data": {
    }
}