example-data.com
Menu
Browse docs and collections

Overview

tasks / #98

Deploy error handling

projectId
projects/14
assigneeUserId
Cindy Barrows @cindy_barrows20
title
Deploy error handling
description
Appono suffragium succedo condico adaugeo ullam minima coaegresco defleo spoliatio.
status
todo
priority
normal
dueDate
2026-07-23
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 98,
  "projectId": 14,
  "assigneeUserId": 165,
  "title": "Deploy error handling",
  "description": "Appono suffragium succedo condico adaugeo ullam minima coaegresco defleo spoliatio.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-07-23",
  "createdAt": "2025-06-15T06:48:24.829Z",
  "updatedAt": "2025-12-18T05:38:02.023Z"
}