example-data.com
Menu
Browse docs and collections

Overview

tasks / #115

Configure CI pipeline

projectId
projects/16
assigneeUserId
Gerald Lind @gerald_lind57
title
Configure CI pipeline
description
Subseco delectatio crapula totus uredo adversus veritatis adimpleo conicio atqui.
status
in_progress
priority
high
dueDate
2026-05-05
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 115,
  "projectId": 16,
  "assigneeUserId": 179,
  "title": "Configure CI pipeline",
  "description": "Subseco delectatio crapula totus uredo adversus veritatis adimpleo conicio atqui.",
  "status": "in_progress",
  "priority": "high",
  "dueDate": "2026-05-05",
  "createdAt": "2026-05-05T22:00:35.818Z",
  "updatedAt": "2026-05-18T21:19:04.703Z"
}