I'm using REST API to create confluence pages.
But the content is occupying full width. When I create pages in confluence it's roughly 800px wide and in the center.
How to correct the page width or layout while posting plain HTML like <p>Hello</p> via rest API ?
There's apparently are some undocumented metadata.properties you can use to set this:
'metadata': { 'properties': { 'content-appearance-draft': { 'value': 'full-width' }, 'content-appearance-published': { 'value': 'full-width' }
Answer by Thomas Berger found in the Developer forums here which is probably a good place to look for API answers. :-}.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.