example-data.com
Menu
Browse docs and collections

Overview

tasks / #671

Configure user authentication

projectId
projects/80
assigneeUserId
Rupert Lebsack @rupert.lebsack
title
Configure user authentication
description
Aliquid placeat viscus.
status
blocked
priority
high
dueDate
2026-05-09
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 671,
  "projectId": 80,
  "assigneeUserId": 249,
  "title": "Configure user authentication",
  "description": "Aliquid placeat viscus.",
  "status": "blocked",
  "priority": "high",
  "dueDate": "2026-05-09",
  "createdAt": "2025-11-14T01:45:29.546Z",
  "updatedAt": "2026-02-04T14:10:56.020Z"
}