example-data.com
Menu
Browse docs and collections

Overview

tasks / #606

Update dashboard widget

projectId
projects/73
assigneeUserId
Vidal Parker @vidal_parker12
title
Update dashboard widget
description
Vorago architecto tyrannus tolero abutor.
status
done
priority
normal
dueDate
2026-06-21
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 606,
  "projectId": 73,
  "assigneeUserId": 203,
  "title": "Update dashboard widget",
  "description": "Vorago architecto tyrannus tolero abutor.",
  "status": "done",
  "priority": "normal",
  "dueDate": "2026-06-21",
  "createdAt": "2026-05-18T18:17:33.701Z",
  "updatedAt": "2026-05-21T00:29:31.068Z"
}