example-data.com

projects / #62

orgId
Ziemann LLC
teamId
name
Customer Portal
slug
ziemann-llc-customer-portal
description
Minima tripudio bardus contra candidus supplanto alii cernuus perspiciatis.
status
active
startDate
2026-04-02
dueDate
2026-07-23
ownerUserId
80
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/projects/62" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/projects/62"
);
const project = await res.json();
import type { Project } from "https://example-data.com/types/projects.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/projects/62"
);
const project = (await res.json()) as Project;
import requests

res = requests.get(
    "https://example-data.com/api/v1/projects/62"
)
project = res.json()
{
  "id": 62,
  "orgId": 20,
  "teamId": null,
  "name": "Customer Portal",
  "slug": "ziemann-llc-customer-portal",
  "description": "Minima tripudio bardus contra candidus supplanto alii cernuus perspiciatis.",
  "status": "active",
  "startDate": "2026-04-02",
  "dueDate": "2026-07-23",
  "ownerUserId": 80,
  "createdAt": "2025-10-14T03:52:13.150Z",
  "updatedAt": "2026-05-05T17:31:22.782Z"
}
Draftbit