example-data.com
Menu
Browse docs and collections

Overview

tasks / #508

Deploy role-based access

projectId
projects/64
assigneeUserId
Tillman Breitenberg @tillman_breitenberg54
title
Deploy role-based access
description
Minus decretum laboriosam conculco.
status
done
priority
high
dueDate
2026-06-21
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 508,
  "projectId": 64,
  "assigneeUserId": 145,
  "title": "Deploy role-based access",
  "description": "Minus decretum laboriosam conculco.",
  "status": "done",
  "priority": "high",
  "dueDate": "2026-06-21",
  "createdAt": "2026-03-06T20:32:33.040Z",
  "updatedAt": "2026-05-01T02:21:02.417Z"
}