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
        • POSTAdd group to workflow
        • POSTAdd workflow
        • POSTCalculate workflow schemas
        • DELDelete all groups for a workflow
        • DELDelete workflow
        • POSTExport workflow
        • GETGet task details
        • GETGet tasks
        • POSTImport workflow
        • GETList groups for a workflow
        • PUTOverwrite groups for a workflow
        • DELRemove a group from a workflow
        • POSTRename workflow
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceWorkflow Builder

Calculate workflow schemas

POST
http://localhost:3000/workflow_builder/workflows/schemas
POST
/workflow_builder/workflows/schemas
$curl -X POST http://localhost:3000/workflow_builder/workflows/schemas \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "inputSchema": {},
3 "outputSchema": {}
4}

calculate incoming/outgoing schemas for the workflow.

Was this page helpful?
Previous

Delete all groups for a workflow

Next
Built with

Authentication

AuthorizationBasic

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

Request

request body
workflowobjectOptional
Third generation workflow document as it exists in the database

Response

Input/Output transformation schemas for the workflow

inputSchemaobject
outputSchemaobject

Errors

500
Internal Server Error