Skip to main content
GET
/
tasks
/
{task_id}
Get task by ID
curl --request GET \
  --url https://api.projectcor.com/v1/tasks/{task_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "title": "<string>",
  "project_id": 123,
  "description": "<string>",
  "deadline": "2023-11-07T05:31:56Z",
  "status": "nueva",
  "priority": 0,
  "archived": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

task_id
integer
required

Response

200 - application/json

Task details

id
integer
title
string
project_id
integer
description
string
deadline
string<date-time>
status
enum<string>
Available options:
nueva,
en_proceso,
estancada,
finalizada
priority
enum<integer>

0 = Low, 1 = Medium, 2 = High, 3 = Urgent

Available options:
0,
1,
2,
3
archived
boolean