> ## 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.

# Invia una valutazione del workflow

> Invia le risposte di controlli o attività di un framework (workflow) e ottienine il punteggio: l'azione «Salva» su uno step del framework nella GUI. Aegister ricodifica e salva il risultato lato server come nuova valutazione.



## 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

````