example-data.com
Menu
Browse docs and collections

Overview

tasks / #362

Update CI pipeline

projectId
projects/43
assigneeUserId
Adelia Roberts @adelia_roberts0
title
Update CI pipeline
description
Est tergo vicissitudo depulso aduro.
status
blocked
priority
normal
dueDate
2026-08-16
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 362,
  "projectId": 43,
  "assigneeUserId": 231,
  "title": "Update CI pipeline",
  "description": "Est tergo vicissitudo depulso aduro.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": "2026-08-16",
  "createdAt": "2026-05-09T01:01:51.585Z",
  "updatedAt": "2026-05-18T13:43:21.335Z"
}