v1

latestSwagger 2.0MIT2026-07-17233380637.0 KB
Tasks

Get a task

get/crm/tasks/{id}

Path parameters

idstring required

Response

Returns the Task by id

idstring

Unique task id

taskTypeIdstring required

Id for type of task e.g Call / Email / Meeting etc.

namestring required

Name of task

contactsIdsinteger[]

Contact ids for contacts linked to this task

dealsIdsstring[]

Deal ids for deals a task is linked to

companiesIdsstring[]

Companies ids for companies a task is linked to

Example response

{
  "taskTypeId": "61a5cd07ca1347c82306ad09",
  "name": "Task: Connect with client",
  "contactsIds": [
    1,
    2,
    3
  ],
  "dealsIds": [
    "61a5ce58c5d4795761045990",
    "61a5ce58c5d4795761045991",
    "61a5ce58c5d4795761045992"
  ],
  "id": "61a5cd07ca1347c82306ad06",
  "companiesIds": [
    "61a5ce58c5d4795761045990",
    "61a5ce58c5d4795761045991",
    "61a5ce58c5d4795761045992"
  ]
}