example-data.com

tasks / #402

projectId
projects/48
assigneeUserId
143
title
Review data validation
description
Curvo comminor via absconditus defleo contabesco acsi conor.
status
done
priority
high
dueDate
2026-05-10
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/402"
)
task = res.json()
{
  "id": 402,
  "projectId": 48,
  "assigneeUserId": 143,
  "title": "Review data validation",
  "description": "Curvo comminor via absconditus defleo contabesco acsi conor.",
  "status": "done",
  "priority": "high",
  "dueDate": "2026-05-10",
  "createdAt": "2025-06-30T07:02:19.144Z",
  "updatedAt": "2026-03-20T11:04:25.630Z"
}
Draftbit