latestOpenAPI 3.0.02026-08-10621852.7 KB

c8f0d96c040e

Web

Retrieve Compass product HTML content

Fetches product documentation content from S3 using the provided product parameters and returns the HTML as plain text inside a JSON response.

post/web/compassProductContent

Request body

product_codestring required
doc_versionstring required
languagestring required
doc_idstring required

Example request

{
  "product_code": "ln",
  "doc_version": "2025.x",
  "language": "en-us",
  "doc_id": "lnperformancelib_op"
}

Response

HTML content retrieved successfully

successboolean
htmlstring

Raw HTML content as plain text

Example response

{
  "success": true,
  "html": "<!DOCTYPE html><html><body><h1>Sample</h1></body></html>"
}