v1

latestOpenAPI 3.0.12026-07-13130168404.3 KB
Content body

Asynchronously convert content body

Converts a content body from one format to another format asynchronously. Returns the asyncId for the asynchronous task.

Supported conversions:

  • atlas_doc_format: editor, export_view, storage, styled_view, view
  • storage: atlas_doc_format, editor, export_view, styled_view, view
  • editor: storage

No other conversions are supported at the moment. Once a conversion is completed, it will be available for 5 minutes at the result endpoint.

Permissions required: If request specifies 'contentIdContext', 'View' permission for the space, and permission to view the content.

post/wiki/rest/api/contentbody/convert/async/{to}

Path parameters

to'export_view' required

The name of the target format for the content body.

Query parameters

expandstring[]

A multi-value parameter indicating which properties of the content to expand and populate. Expands are dependent on the to conversion format and may be irrelevant for certain conversions (e.g. macroRenderedOutput is redundant when converting to view format).

If rendering to view format, and the body content being converted includes arbitrary nested content (such as macros); then it is necessary to include webresource expands in the request. Webresources for content body are the batched JS and CSS dependencies for any nested dynamic content (i.e. macros).

  • embeddedContent returns metadata for nested content (e.g. page included using page include macro)
  • mediaToken returns JWT token for retrieving attachment data from Media API
  • macroRenderedOutput additionally converts body to view format
  • webresource.superbatch.uris.js returns all common JS dependencies as static URLs
  • webresource.superbatch.uris.css returns all common CSS dependencies as static URLs
  • webresource.superbatch.uris.all returns all common dependencies as static URLs
  • webresource.superbatch.tags.all returns all common JS dependencies as html <script> tags
  • webresource.superbatch.tags.css returns all common CSS dependencies as html <style> tags
  • webresource.superbatch.tags.js returns all common dependencies as html <script> and <style> tags
  • webresource.uris.js returns JS dependencies specific to conversion
  • webresource.uris.css returns CSS dependencies specific to conversion
  • webresource.uris.all returns all dependencies specific to conversion
  • webresource.tags.all returns common JS dependencies as html <script> tags
  • webresource.tags.css returns common CSS dependencies as html <style> tags
  • webresource.tags.js returns common dependencies as html <script> and <style> tags
spaceKeyContextstring

The space key used for resolving embedded content (page includes, files, and links) in the content body. For example, if the source content contains the link <ac:link><ri:page ri:content-title="Example page" /><ac:link> and the spaceKeyContext=TEST parameter is provided, then the link will be converted to a link to the "Example page" page in the "TEST" space.

contentIdContextstring

The content ID used to find the space for resolving embedded content (page includes, files, and links) in the content body. For example, if the source content contains the link <ac:link><ri:page ri:content-title="Example page" /><ac:link> and the contentIdContext=123 parameter is provided, then the link will be converted to a link to the "Example page" page in the same space that has the content with ID=123. Note, spaceKeyContext will be ignored if this parameter is provided.

allowCacheboolean

Controls whether conversion results are cached and reused for identical requests.

  • false: Each request creates a new conversion task, even if an identical request was made previously.
  • true: Enables caching behavior for identical requests from the same user.
    • If no cached result exists, a new conversion task is created
    • If a cached result exists, the existing task is marked as RERUNNING and will complete with status COMPLETED
    • Returns the same task ID for identical requests, allowing you to retrieve the cached result
embeddedContentRender'current' | 'version-at-save'

Mode used for rendering embedded content, like attachments.

  • current renders the embedded content using the latest version.
  • version-at-save renders the embedded content using the version at the time of save.

Request body

valuestring required

The body of the content in the relevant format.

representation'view' | 'export_view' | 'styled_view' | 'storage' | 'editor' | 'editor2' | 'anonymous_export_view' | 'wiki' | 'atlas_doc_format' | 'plain' | 'raw' required

The content format type. Set the value of this property to the name of the format being used, e.g. 'storage'.

Response

Returned if the content is added to the messaging queue for conversion. This id will be available for 5 minutes after the conversion is complete.

asyncIdstring required