example-data.com
Menu
Browse docs and collections

Overview

tasks / #41

Remove file uploads

projectId
projects/6
assigneeUserId
Fatima Dicki @fatima_dicki
title
Remove file uploads
description
Ventito cervus tenax eaque conscendo socius.
status
blocked
priority
high
dueDate
2026-06-13
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 41,
  "projectId": 6,
  "assigneeUserId": 176,
  "title": "Remove file uploads",
  "description": "Ventito cervus tenax eaque conscendo socius.",
  "status": "blocked",
  "priority": "high",
  "dueDate": "2026-06-13",
  "createdAt": "2025-09-05T23:58:05.442Z",
  "updatedAt": "2026-03-09T11:16:52.693Z"
}