example-data.com
Menu
Browse docs and collections

Overview

tasks / #392

Remove logging

projectId
projects/47
assigneeUserId
Charlene Roberts @charlene_roberts
title
Remove logging
description
Aestivus congregatio cinis acceptus acies tum tergum vacuus catena aetas.
status
blocked
priority
urgent
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tasks/392"
);
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/392"
);
const task = (await res.json()) as Task;

Python example

import requests

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

Response

{
  "id": 392,
  "projectId": 47,
  "assigneeUserId": 1,
  "title": "Remove logging",
  "description": "Aestivus congregatio cinis acceptus acies tum tergum vacuus catena aetas.",
  "status": "blocked",
  "priority": "urgent",
  "dueDate": null,
  "createdAt": "2025-10-30T06:26:26.550Z",
  "updatedAt": "2025-12-18T05:42:15.596Z"
}