tasks / #336
- projectId
- projects/41
- assigneeUserId
- 121
- title
- Configure user authentication
- description
- Ex adeo validus compello curso optio coerceo curriculum baiulus virgo.
- status
- in_progress
- priority
- normal
- dueDate
- 2026-07-19
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/336" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/336"
);
const task = await res.json();import type { Task } from "https://example-data.com/types/tasks.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tasks/336"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/336"
)
task = res.json() {
"id": 336,
"projectId": 41,
"assigneeUserId": 121,
"title": "Configure user authentication",
"description": "Ex adeo validus compello curso optio coerceo curriculum baiulus virgo.",
"status": "in_progress",
"priority": "normal",
"dueDate": "2026-07-19",
"createdAt": "2025-11-19T23:18:58.831Z",
"updatedAt": "2026-04-07T12:37:41.814Z"
}