example-data.com
Menu
Browse docs and collections

Overview

tasks / #370

Document file uploads

projectId
projects/44
assigneeUserId
Arnaldo Friesen @arnaldo_friesen78
title
Document file uploads
description
Amissio bos laudantium trucido decens sumo ustilo rem demo una.
status
in_review
priority
normal
dueDate
2026-05-19
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 370,
  "projectId": 44,
  "assigneeUserId": 113,
  "title": "Document file uploads",
  "description": "Amissio bos laudantium trucido decens sumo ustilo rem demo una.",
  "status": "in_review",
  "priority": "normal",
  "dueDate": "2026-05-19",
  "createdAt": "2025-11-12T22:36:18.921Z",
  "updatedAt": "2026-05-17T04:06:33.047Z"
}