---
title: "Read Task"
method: GET
path: "/Task/{id}"
tags: ["Task"]
---

# Read Task

`GET /Task/{id}`

Read an existing 'Task' record.

## Response `200`

Success.

- Task
  - `id` string — An ID.
  - `name` string — A one-line string.
  - `status` 'Not Started' | 'Started' | 'Completed' | 'Canceled' | 'Deferred'
  - `priority` 'Low' | 'Normal' | 'High' | 'Urgent'
  - `dateStart` string, nullable — Specified if the 'dateStart' field is all-day.
  - `dateStartDate` string, date, nullable
  - `dateEnd` string, nullable — Specified if the 'dateEnd' field is all-day.
  - `dateEndDate` string, date, nullable
  - `dateCompleted` string, nullable — A timestamp in UTC.
  - `description` string, nullable — A multi-line text.
  - `parentId` string, nullable — A foreign record ID.
  - `parentType` 'Account' | 'Contact' | 'Lead' | 'Opportunity' | 'Case' | 'CCompany', nullable — An entity type.
  - `parentName` string, nullable — A foreign record name.
  - `accountId` string, nullable — An ID of the record of the Account type.
  - `accountName` string, nullable — A foreign record name.
  - `contactId` string, nullable — An ID of the record of the Contact type.
  - `contactName` string, nullable — A foreign record name.
  - `createdAt` string, nullable — A timestamp in UTC.
  - `modifiedAt` string, nullable — A timestamp in UTC.
  - `createdById` string, nullable — An ID of the record of the User type.
  - `createdByName` string, nullable — A foreign record name.
  - `modifiedById` string, nullable — An ID of the record of the User type.
  - `modifiedByName` string, nullable — A foreign record name.
  - `assignedUserId` string — An ID of the record of the User type.
  - `assignedUserName` string, nullable — A foreign record name.
  - `teamsIds` string[], nullable — IDs of records of the Team type.
  - `teamsNames` object, nullable — An {ID => record name} map.
  - `collaboratorsIds` string[], nullable — IDs of records of the User type.
  - `collaboratorsNames` object, nullable — An {ID => record name} map.
  - `streamUpdatedAt` string, nullable — A timestamp in UTC.

## Other responses

- `403` — Forbidden. Might be an access control error. Check logs for details.

---

[API](https://skmtc.net/espocrm/apis/espocrm-api.md) · [All operations](https://skmtc.net/espocrm/apis/espocrm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/espocrm/espocrm-api/revisions/6622dabfccd3/schema)
