GET/projects/api/v3/tasks/{taskId}.json

Get a specific task.

Returns the information about a specific task.

On this endpoint you can filter by custom fields. The syntax for the query parameter is the following:

customField[id][op]=value

Where:

  • [id] is the custom field ID
  • [op] is the operator to apply when filtering, different operators are allowed according to the custom field type
  • [value] is the value to apply when filtering

For example, if I want to filter a dropdown custom field with ID 10 to only return entries that have the value "Option1" we would do the following:

customField[10][eq]=Option1

The allowed operators are:

  • like
  • not-like
  • eq
  • not
  • lt
  • gt
  • any

Path Params

  • Name
    taskId
    Type
    integer
    required
    Description

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 OK
  • Code
    400
    Type
    object
    Schema
    Description
    400 Bad Request
    ErrorResponse defines how []Error should be marshaled to JSON.
  • Code
    404
    Description
    404 Not Found No Data

Examples

200 OK

responseV205
{  "affected": {    "linkedCardId": 0,    "linkedColumnId": 0,    "linkedColumnName": "string",    "taskIds": [      0    ]  },  "included": {    "cards": {      "additionalProp": {        "archived": true,        "archivedAt": "string",        "archivedBy": {          "id": 0,          "meta": {},          "type": "string"