Skip to main content
PATCH
/
sheets
/
{sheet_id}
Update sheet
curl --request PATCH \
  --url https://api.bedrock.cv/sheets/{sheet_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sheet_number": "A101",
  "title": "First Floor Plan",
  "discipline": "Architectural"
}
'
{
  "data": {
    "id": "sht_01JABCD123",
    "drawing_id": "drw_01JABCD123",
    "index": 0,
    "uri": "gs://bedrock-files/projects/prj_01JABCD123/sheets/sht_01JABCD123.png",
    "sheet_number": "A101",
    "title": "First Floor Plan",
    "discipline": "Architectural",
    "metadata": {
      "scale": "1/4\" = 1'0\"",
      "revision": "C"
    },
    "created_at": "2024-06-16T14:05:00Z",
    "updated_at": "2024-06-16T14:05:00Z"
  }
}
Update extracted metadata for a sheet. Use this to correct sheet numbers or titles if automatic extraction was incorrect.

Authorizations

Authorization
string
header
required

API key prefixed with sk_. Example: Authorization: Bearer sk_xxx

Headers

X-API-Version
string
default:2026-01-01

API version

Path Parameters

sheet_id
string
required

Sheet ID

Body

application/json
sheet_number
string
title
string
discipline
string

Response

Success

data
object
Example:
{
"id": "sht_01JABCD123",
"drawing_id": "drw_01JABCD123",
"index": 0,
"uri": "gs://bedrock-files/projects/prj_01JABCD123/sheets/sht_01JABCD123.png",
"sheet_number": "A101",
"title": "First Floor Plan",
"discipline": "Architectural",
"metadata": { "scale": "1/4\" = 1'0\"", "revision": "C" },
"created_at": "2024-06-16T14:05:00Z",
"updated_at": "2024-06-16T14:05:00Z"
}