For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI ReferenceRelease notes
DocumentationAPI ReferenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTApply a template to text
        • POSTApply templates to text
        • POSTParse a template
        • POSTRender jinja template
        • POSTRender Jinja2 context with data cast
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceTemplate Builder

Apply templates to text

POST
http://localhost:3000/template_builder/applyTemplates
POST
/template_builder/applyTemplates
$curl -X POST http://localhost:3000/template_builder/applyTemplates \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1[
2 "Template output 1",
3 "Template output 2",
4 "Template output 3"
5]
Applies templates to parse text.
Was this page helpful?
Previous

Parse a template

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Request

request body
textlist of stringsOptional
templateslist of stringsOptional

Response

Parsed text based on the templates used

Errors

500
Internal Server Error