example-data.com
Menu
Browse docs and collections

Overview

documents / #211

Runbook: Release Process

ownerUserId
Jameson Considine @jameson.considine1
orgId
Lakin Group
title
Runbook: Release Process
slug
runbook-release-process-211
content
Creo aspicio tenetur video damno agnitio. Verecundia auditor advenio utrum sol approbo. Creptio ratione curto. Paulatim vesco claro pauper apostolus cruciamentum ago candidus aegre. Caritas tenetur molestias vomica pauper. Placeat aperio supplanto crinis turba saepe arbor venio bellum.
isPublic
false
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/documents/211"
);
const document = await res.json();

TypeScript example

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

const res = await fetch(
  "https://example-data.com/api/v1/documents/211"
);
const document = (await res.json()) as Document;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/documents/211"
)
document = res.json()

Response

{
  "id": 211,
  "ownerUserId": 236,
  "orgId": 1,
  "title": "Runbook: Release Process",
  "slug": "runbook-release-process-211",
  "content": "Creo aspicio tenetur video damno agnitio. Verecundia auditor advenio utrum sol approbo. Creptio ratione curto.\n\nPaulatim vesco claro pauper apostolus cruciamentum ago candidus aegre. Caritas tenetur molestias vomica pauper. Placeat aperio supplanto crinis turba saepe arbor venio bellum.",
  "isPublic": false,
  "createdAt": "2024-06-01T13:24:06.315Z",
  "updatedAt": "2025-03-19T07:31:04.282Z"
}