Wiki API: content_base64 empty in POST/PATCH responses #607
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
When creating or updating a wiki page via the API, the response always returns
"content_base64": ""even though the content was written successfully.Steps to Reproduce
"content_base64": ""— empty string"content_base64": ""in some casesExpected Behavior
The response should include the page content in
content_base64so the caller can verify the write succeeded without a separate request.Actual Behavior
content_base64is always an empty string in write responses. The content is written correctly (visible in web UI), but the API response doesn't reflect it.Impact
API consumers cannot verify wiki writes succeeded without cloning the wiki git repo or checking the web UI. Makes it difficult to build reliable wiki automation.