Task

Get Task By Id

GET
/task/{id}

Path Parameters

idstring

Response Body

curl -X GET "http://crm-apiprod.b2bleadsmarket.com/task/string"
{
  "id": "string",
  "position": 0,
  "title": "string",
  "body": "string",
  "dueAt": "2019-08-24T14:15:22Z",
  "statusId": "string",
  "status": {
    "name": "string",
    "description": "string",
    "isActive": true,
    "isCustom": true
  },
  "assigneeId": "string",
  "assignee": {
    "nameFirstName": "string",
    "nameLastName": "string",
    "userEmail": "string",
    "avatarUrl": "string"
  },
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "deletedAt": "2019-08-24T14:15:22Z",
  "createdBy": {
    "source": "EMAIL",
    "workspaceMemberId": "string",
    "name": "string"
  }
}