example-data.com
Menu
Browse docs and collections

Overview

tasks / #170

Review email notifications

projectId
projects/22
assigneeUserId
Allan Buckridge @allan_buckridge
title
Review email notifications
description
Ambulo curto clarus ut pariatur arma tersus vobis tempus harum.
status
todo
priority
normal
dueDate
2026-06-10
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 170,
  "projectId": 22,
  "assigneeUserId": 106,
  "title": "Review email notifications",
  "description": "Ambulo curto clarus ut pariatur arma tersus vobis tempus harum.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-06-10",
  "createdAt": "2025-06-04T12:32:38.716Z",
  "updatedAt": "2025-10-31T00:04:38.429Z"
}