example-data.com
Menu
Browse docs and collections

Overview

tasks / #261

Investigate webhook handler

projectId
projects/32
assigneeUserId
title
Investigate webhook handler
description
Defluo vir communis tenus peccatus cras victus stabilis doloribus argentum.
status
blocked
priority
low
dueDate
2026-07-20
createdAt
updatedAt

Component variants

Related

References

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 261,
  "projectId": 32,
  "assigneeUserId": null,
  "title": "Investigate webhook handler",
  "description": "Defluo vir communis tenus peccatus cras victus stabilis doloribus argentum.",
  "status": "blocked",
  "priority": "low",
  "dueDate": "2026-07-20",
  "createdAt": "2025-11-30T18:47:52.105Z",
  "updatedAt": "2026-03-12T06:55:55.656Z"
}