example-data.com
Menu
Browse docs and collections

Overview

tasks / #268

Test user authentication

projectId
projects/32
assigneeUserId
Candace Mueller @candace.mueller
title
Test user authentication
description
Charisma arbitro voco audeo officiis solio degero carmen tot vis.
status
todo
priority
low
dueDate
2026-05-18
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 268,
  "projectId": 32,
  "assigneeUserId": 75,
  "title": "Test user authentication",
  "description": "Charisma arbitro voco audeo officiis solio degero carmen tot vis.",
  "status": "todo",
  "priority": "low",
  "dueDate": "2026-05-18",
  "createdAt": "2026-02-25T13:25:14.216Z",
  "updatedAt": "2026-03-13T10:55:09.639Z"
}