example-data.com
Menu
Browse docs and collections

Overview

tasks / #494

Document CI pipeline

projectId
projects/62
assigneeUserId
Tabitha Ruecker @tabitha.ruecker
title
Document CI pipeline
description
Pel denego arbor ante.
status
done
priority
high
dueDate
2026-05-22
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 494,
  "projectId": 62,
  "assigneeUserId": 197,
  "title": "Document CI pipeline",
  "description": "Pel denego arbor ante.",
  "status": "done",
  "priority": "high",
  "dueDate": "2026-05-22",
  "createdAt": "2025-06-21T04:24:40.794Z",
  "updatedAt": "2025-08-12T21:15:43.501Z"
}