curl --request PUT \
--url https://api.backside.app/api/v1/notes/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"body": "<string>",
"commit": true,
"is_archived": true,
"is_pinned": true,
"metadata": "<unknown>",
"notebook_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_url": "<string>",
"title": "<string>"
}
'{
"body": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_archived": true,
"is_pinned": true,
"metadata": "<unknown>",
"tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"deleted_at": "2023-11-07T05:31:56Z",
"notebook_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_url": "<string>",
"word_count": 123
}curl --request PUT \
--url https://api.backside.app/api/v1/notes/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"body": "<string>",
"commit": true,
"is_archived": true,
"is_pinned": true,
"metadata": "<unknown>",
"notebook_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_url": "<string>",
"title": "<string>"
}
'{
"body": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_archived": true,
"is_pinned": true,
"metadata": "<unknown>",
"tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"deleted_at": "2023-11-07T05:31:56Z",
"notebook_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_url": "<string>",
"word_count": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Note ID
Commit-boundary hint for the temporal capture layer. Some(true)
(the effective default) treats the UPDATE as a semantic commit point;
Some(false) suppresses history capture (editor auto-saves between
commit points). v1 threads the flag through but the capture macro
is a no-op — it lights up when temporal-capture.md lands. See
docs/tasks/temporal-prelaunch-additive.md §3.6.
Was this page helpful?