example-data.com

tasks / #217

projectId
projects/27
assigneeUserId
101
title
Update user authentication
description
Sufficio tempus comparo eveniet.
status
in_review
priority
urgent
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/217"
)
task = res.json()
{
  "id": 217,
  "projectId": 27,
  "assigneeUserId": 101,
  "title": "Update user authentication",
  "description": "Sufficio tempus comparo eveniet.",
  "status": "in_review",
  "priority": "urgent",
  "dueDate": null,
  "createdAt": "2026-04-30T16:02:06.550Z",
  "updatedAt": "2026-05-02T17:25:15.631Z"
}
Draftbit