cURL
curl --request POST \ --url https://api.projectcor.com/v1/tasks \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "title": "<string>", "project_id": 123 } '
{ "id": 123, "title": "<string>", "project_id": 123, "description": "<string>", "deadline": "2023-11-07T05:31:56Z", "status": "nueva", "priority": 0, "archived": true }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Task Title
Project ID
Task created successfully
nueva
en_proceso
estancada
finalizada
0 = Low, 1 = Medium, 2 = High, 3 = Urgent
0
1
2
3