Get Specific Renditions for a Publication
Required scope:
public-api:read
Description
With the Renditions Endpoint you can load different output formats of your publication like RSS
, XML
, HTML
etc. Attention: A rendition is only available if the output format is configured in the Content Type configuration.
Use Cases
- Provides a Publication for a delivery in another format like
RSS
,XML
(so calledRendition
)
Related
Endpoint
GET api/v1/documents/:documentId/latestPublication/renditions/:renditionHandles
Parameters
Name | Type | Required | Notes |
---|---|---|---|
:renditionHandles | string | x | A comma-separated list of renditions handles, e.g. “web,name”. |
?ignoreComponentConditions | boolean | Provides a way to opt out of component filtering and return all content regardless of whether each component passes the conditional checks. Added in: release-2024-03 Default: false | |
?componentConditions | string | JSON stringified object which contains the component conditions you would like to apply. Added in: release-2024-03 Default: dateTime: new Date() Example: ?componentConditions={"dateTime":"2024-02-14T17:25:10.391Z"} |