TRUECALC
RESTReference

Read a workbook's checkpoint

Only the latest checkpoint is servable today (no history endpoint yet). No request headers are read by this route — neither `Authorization` nor any of the three contract headers; `security: []` reflects that faithfully rather than implying a check that does not exist.

GET/workbooks/{id}

Path Parameters

id*string

Query Parameters

version?string

Only the LATEST checkpoint is servable (no history) — a value that does not match the current version returns a clean 404, never a silent fall-through to HEAD.

Response Body

application/json

application/json

curl -X GET "https://example.com/workbooks/string"
{
  "workbookId": "string",
  "version": "string",
  "sheets": [
    {
      "sheetId": "string",
      "name": "string",
      "cells": {
        "property1": "string",
        "property2": "string"
      },
      "formats": {
        "property1": {
          "property1": null,
          "property2": null
        },
        "property2": {
          "property1": null,
          "property2": null
        }
      }
    }
  ]
}
{
  "error": "not_found",
  "message": "string"
}