example-data.com
Menu
Browse docs and collections

Overview

tasks / #595

Update performance metrics

projectId
projects/73
assigneeUserId
Karlee Hudson-Turner @karlee.hudson-turner88
title
Update performance metrics
description
Surculus eius tabesco nam.
status
done
priority
low
dueDate
2026-06-28
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/tasks/595" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tasks/595"
);
const task = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/tasks.d.ts https://example-data.com/types/tasks.d.ts
import type { Task } from "./types/tasks";

const res = await fetch(
  "https://example-data.com/api/v1/tasks/595"
);
const task = (await res.json()) as Task;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tasks/595"
)
task = res.json()

Response

{
  "id": 595,
  "projectId": 73,
  "assigneeUserId": 36,
  "title": "Update performance metrics",
  "description": "Surculus eius tabesco nam.",
  "status": "done",
  "priority": "low",
  "dueDate": "2026-06-28",
  "createdAt": "2025-11-18T11:04:09.096Z",
  "updatedAt": "2026-02-14T00:57:23.813Z"
}