example-data.com
Menu
Browse docs and collections

Overview

tasks / #388

Deploy error handling

projectId
projects/47
assigneeUserId
Lilly Rosenbaum @lilly.rosenbaum
title
Deploy error handling
description
Ambulo benigne degusto vulgus usitas statim uberrime ancilla sumptus.
status
in_review
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 388,
  "projectId": 47,
  "assigneeUserId": 223,
  "title": "Deploy error handling",
  "description": "Ambulo benigne degusto vulgus usitas statim uberrime ancilla sumptus.",
  "status": "in_review",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2025-07-16T09:28:38.297Z",
  "updatedAt": "2026-03-10T21:54:59.764Z"
}