example-data.com
Menu
Browse docs and collections

Overview

tasks / #412

Implement CI pipeline

projectId
projects/49
assigneeUserId
Lilla Koss @lilla.koss
title
Implement CI pipeline
description
Curto angelus tyrannus volutabrum ocer degenero taedium.
status
in_review
priority
normal
dueDate
2026-07-21
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 412,
  "projectId": 49,
  "assigneeUserId": 59,
  "title": "Implement CI pipeline",
  "description": "Curto angelus tyrannus volutabrum ocer degenero taedium.",
  "status": "in_review",
  "priority": "normal",
  "dueDate": "2026-07-21",
  "createdAt": "2025-10-19T04:16:16.162Z",
  "updatedAt": "2026-04-15T23:13:26.345Z"
}