example-data.com

tasks / #167

projectId
projects/22
assigneeUserId
126
title
Configure role-based access
description
Suscipit tardus trucido allatus demum conscendo adimpleo absorbeo contabesco quos.
status
todo
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/167"
)
task = res.json()
{
  "id": 167,
  "projectId": 22,
  "assigneeUserId": 126,
  "title": "Configure role-based access",
  "description": "Suscipit tardus trucido allatus demum conscendo adimpleo absorbeo contabesco quos.",
  "status": "todo",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-07-12T07:29:31.555Z",
  "updatedAt": "2026-02-04T05:23:16.996Z"
}
Draftbit