Delete Note
Remove the Git note attached to a commit or other Git object SHA.
JWT claims
Required scopes: git:write
Requires per repo scope: Yes
Deprecated: Use /api/repos/{repo_name}/notes instead.
Authorizations
JWT bearer token signed with your organization's registered signing key. There is no OAuth authorization server; you mint tokens yourself and the token's scopes claim carries the granted permission scopes. Public scopes: git:read (read repository contents), git:write (write branches, commits, tags, and notes), repo:write (create and manage repositories), org:read (list an organization's repositories). Each operation's security requirement names the scopes it requires. See https://code.storage/docs/getting-started/authentication for how to mint tokens.
Body
Delete the Git note for the supplied SHA. Set ref to target a notes ref other than refs/notes/commits; a bare name like reviews is accepted and placed under refs/notes/. note and action are ignored for DELETE requests.
Notes write request describing the commit, the action (add, append, or remove), the note content, and optional concurrency guard.
add creates a note and fails if one already exists. append adds new text to the existing note body.
Author object with name and email for the notes commit.
Optional compare-and-swap guard for the notes ref. Provide expected_notes_ref_sha or the deprecated expected_ref_sha.
Deprecated: use expected_notes_ref_sha. Optional compare-and-swap guard for the notes ref.
Plain-text note content. Required for add and append.
Optional notes ref to target. A bare name like reviews is placed under refs/notes/; a fully-qualified refs/notes/* ref is also accepted. Defaults to refs/notes/commits. Provide notes_ref or the deprecated ref.
"refs/notes/commits"
Git object the note attaches to: a full object SHA (a commit, tree, blob, or annotated tag), or a branch, tag, or other revision that resolves to a commit. Provide object_ref or the deprecated sha.
"b003fc78805954584e1ee364a4ad39d7c79e819a"
Deprecated: use notes_ref. Optional notes ref to target.
"refs/notes/commits"
Deprecated: use object_ref. Git object SHA to attach the note to.
"b003fc78805954584e1ee364a4ad39d7c79e819a"
Response
Note removed from the notes ref.
Result of a notes write operation, including the resulting notes ref state.
New notes ref SHA after the operation.
"3a1d9f7d6b6d482c970554e2a6ef980ecf4f1d55"
The notes ref the operation updates.
"refs/notes/commits"
Operation result with success, status, and optional message.
The commit SHA the note is attached to.
"b003fc78805954584e1ee364a4ad39d7c79e819a"
Deprecated: use notes_ref. The notes ref the operation updates.
"refs/notes/commits"
Previous notes ref commit SHA.
"0c8b5bb9d550d58fcfd651a4fdce8024ef7f1492"