example-data.com
Menu
Browse docs and collections

Overview

projects / #62

Customer Portal

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
Amya Powlowski @amya_powlowski32
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

TypeScript example

// Download once: mkdir -p types && curl -o types/projects.d.ts https://example-data.com/types/projects.d.ts
import type { Project } from "./types/projects";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/projects/62"
)
project = res.json()

Response

{
  "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"
}