> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aegister.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Submit a workflow evaluation

> Submit control or task answers for a framework (workflow) and get them scored: the GUI's "Save" on a framework step. Aegister re-encodes and persists the result server-side as a new evaluation.



## OpenAPI

````yaml post /api/v1/v-ciso/organizations/{organizationid}/workflows/{workflowid}/evaluate
openapi: 3.1.0
info:
  title: Aegister API
  version: 1.0.5
servers: []
security: []
paths:
  /api/v1/v-ciso/organizations/{organizationid}/workflows/{workflowid}/evaluate:
    post:
      tags:
        - V-CISO • Workflows
      summary: 'Proxy: submit workflow evaluation / scoring'
      description: |-
        POST /api/v1/v-ciso/organizations/{oid}/workflows/{wid}/evaluate

        Proxies the submission to Activepieces and persists the returned
        evaluation_data verbatim as a new WorkflowEvaluation row. Frontends
        do not need a separate /evaluations POST call.
      operationId: v-ciso-workflow-evaluate
      parameters:
        - in: path
          name: organizationid
          schema:
            type: integer
          required: true
        - in: path
          name: workflowid
          schema:
            type: string
          required: true
      responses:
        '200':
          description: No response body
      security:
        - ApiKeyAuth: []
        - ApiKeyQueryParam: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Aegister-Token
    ApiKeyQueryParam:
      type: apiKey
      in: query
      name: X-Aegister-Token

````