example-data.com
Menu
Browse docs and collections

Overview

tasks / #423

Configure role-based access

projectId
projects/50
assigneeUserId
Fatima Dicki @fatima_dicki
title
Configure role-based access
description
Surculus succurro cras benevolentia suggero absorbeo socius celo.
status
blocked
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 423,
  "projectId": 50,
  "assigneeUserId": 176,
  "title": "Configure role-based access",
  "description": "Surculus succurro cras benevolentia suggero absorbeo socius celo.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2026-01-09T21:14:53.966Z",
  "updatedAt": "2026-04-21T17:38:30.261Z"
}