example-data.com
Menu
Browse docs and collections

Overview

tasks / #473

Update CI pipeline

projectId
projects/59
assigneeUserId
Celia D'Amore @celia_damore
title
Update CI pipeline
description
Talus auxilium beatae defluo verto caelestis harum.
status
done
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 473,
  "projectId": 59,
  "assigneeUserId": 24,
  "title": "Update CI pipeline",
  "description": "Talus auxilium beatae defluo verto caelestis harum.",
  "status": "done",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2026-02-23T21:22:09.856Z",
  "updatedAt": "2026-03-29T03:54:39.139Z"
}