example-data.com
Menu
Browse docs and collections

Overview

projects / #79

Legacy Migration

orgId
Cormier, Rogahn and Bogisich
teamId
name
Legacy Migration
slug
cormier-rogahn-and-bogisich-legacy-migration
description
Utroque administratio constans aegre.
status
completed
startDate
2025-07-27
dueDate
2026-06-26
ownerUserId
Fatima Dicki @fatima_dicki
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/projects/79"
);
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/79"
);
const project = (await res.json()) as Project;

Python example

import requests

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

Response

{
  "id": 79,
  "orgId": 27,
  "teamId": null,
  "name": "Legacy Migration",
  "slug": "cormier-rogahn-and-bogisich-legacy-migration",
  "description": "Utroque administratio constans aegre.",
  "status": "completed",
  "startDate": "2025-07-27",
  "dueDate": "2026-06-26",
  "ownerUserId": 176,
  "createdAt": "2025-08-22T18:13:45.468Z",
  "updatedAt": "2025-10-12T17:36:27.049Z"
}