example-data.com
Menu
Browse docs and collections

Overview

projects / #49

Notification Service

orgId
Pouros, Nikolaus and Donnelly
teamId
name
Notification Service
slug
pouros-nikolaus-and-donnelly-notification-service
description
Tactus virga creator abundans vere advenio decet.
status
on_hold
startDate
2025-07-08
dueDate
2026-11-09
ownerUserId
Carroll Wisozk @carroll_wisozk
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 49,
  "orgId": 16,
  "teamId": null,
  "name": "Notification Service",
  "slug": "pouros-nikolaus-and-donnelly-notification-service",
  "description": "Tactus virga creator abundans vere advenio decet.",
  "status": "on_hold",
  "startDate": "2025-07-08",
  "dueDate": "2026-11-09",
  "ownerUserId": 210,
  "createdAt": "2026-03-27T00:23:14.968Z",
  "updatedAt": "2026-04-10T08:52:23.925Z"
}