example-data.com

tasks / #129

projectId
projects/17
assigneeUserId
title
Test file uploads
description
At theca alius thorax alienus argentum acquiro claustrum.
status
todo
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/tasks/129" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tasks/129"
);
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/129"
);
const task = (await res.json()) as Task;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tasks/129"
)
task = res.json()
{
  "id": 129,
  "projectId": 17,
  "assigneeUserId": null,
  "title": "Test file uploads",
  "description": "At theca alius thorax alienus argentum acquiro claustrum.",
  "status": "todo",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-11-27T12:10:59.455Z",
  "updatedAt": "2026-02-21T05:37:42.941Z"
}
Draftbit