example-data.com
Menu
Browse docs and collections

Overview

tasks / #533

Test logging

projectId
projects/65
assigneeUserId
Matt Kuhic @matt_kuhic57
title
Test logging
description
Tot adsuesco adsidue curto truculenter absque velut auctus.
status
todo
priority
high
dueDate
2026-07-10
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 533,
  "projectId": 65,
  "assigneeUserId": 226,
  "title": "Test logging",
  "description": "Tot adsuesco adsidue curto truculenter absque velut auctus.",
  "status": "todo",
  "priority": "high",
  "dueDate": "2026-07-10",
  "createdAt": "2025-09-12T12:13:43.501Z",
  "updatedAt": "2025-11-24T04:32:14.504Z"
}