aventra.Developers
API referenceTasks

Get a task

Check a task's details and completion state by UUID.

Permissions: Tasks: read.

GET/tasks/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

Create a key in Aventra → Innstillinger → API-nøkler.

In: header

Path Parameters

id*string
Match^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
Formatuuid

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/tasks/4d73dca4-7537-4f9c-924e-8bccd354663f" \  -H "Authorization: Bearer $AVENTRA_API_KEY"
{  "data": {    "id": "ea2fb66b-6c76-419f-a3e7-a9f8a2d6f47c",    "title": "Follow up on demo request",    "description": null,    "due_date": "2026-10-05T07:00:00Z",    "has_time_specified": true,    "user_id": "f52b3fd3-5ff4-4d93-91c5-6ac79e21cdd5",    "related_company_id": "4d73dca4-7537-4f9c-924e-8bccd354663f",    "completed": false,    "created_at": "2026-09-05T10:00:00Z",    "updated_at": "2026-09-05T10:00:00"  }}

See authentication, errors and retry guidance.