example-data.com
Menu
Browse docs and collections

Overview

tasks / #385

Integrate email notifications

projectId
projects/47
assigneeUserId
Aylin Sanford @aylin.sanford
title
Integrate email notifications
description
Enim turbo capio advoco sapiente vel vehemens compello.
status
blocked
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 385,
  "projectId": 47,
  "assigneeUserId": 173,
  "title": "Integrate email notifications",
  "description": "Enim turbo capio advoco sapiente vel vehemens compello.",
  "status": "blocked",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2026-03-05T22:45:39.624Z",
  "updatedAt": "2026-04-08T10:00:06.388Z"
}