example-data.com
Menu
Browse docs and collections

Overview

tasks / #701

Update data export

projectId
projects/83
assigneeUserId
Filiberto Fay @filiberto.fay59
title
Update data export
description
Comptus defluo bellum contigo vobis abutor maiores cognomen tamquam.
status
blocked
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 701,
  "projectId": 83,
  "assigneeUserId": 92,
  "title": "Update data export",
  "description": "Comptus defluo bellum contigo vobis abutor maiores cognomen tamquam.",
  "status": "blocked",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2025-09-19T14:49:29.954Z",
  "updatedAt": "2025-12-04T15:13:54.817Z"
}