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

# Elenca le attività dell'organizzazione

> Individua ogni attività (tabella e a domande) con il relativo tipo, così che uno script possa localizzare cosa compilare, per poi chiamare gli endpoint per-attività spec / answers / import. Filtro opzionale ?type=table|questions.



## OpenAPI

````yaml get /api/v1/v-ciso/organizations/{organizationid}/tasks
openapi: 3.1.0
info:
  title: Aegister API
  version: 1.0.5
servers: []
security: []
paths:
  /api/v1/v-ciso/organizations/{organizationid}/tasks:
    get:
      tags:
        - V-CISO • Workflows
      summary: List the organization's tasks (table and question)
      description: >-
        GET /api/v1/v-ciso/organizations/{oid}/tasks


        Discover every task (table **and** question) with its ``type``, so a
        script

        can locate what to fill, then call the per-task ``/spec``, ``/answers``
        and

        ``/import`` endpoints. Optional ``?type=table|questions`` filter.
      operationId: v-ciso-tasks
      parameters:
        - in: path
          name: organizationid
          schema:
            type: integer
          required: true
        - in: query
          name: type
          schema:
            type: string
          description: Filter by task type (table|questions).
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: integer
                    description: |-
                      Any value different from 0 indicates an error.  
                      More details can be found in `messages`.
                    minimum: 0
                    maximum: 0
                    examples:
                      - 0
                  messages:
                    type: array
                    description: >-
                      If `error` is `1`, contains zero or more details on the
                      error.
                    examples:
                      - []
                  data:
                    type: array
                    items:
                      type: object
          description: ''
        '401':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: integer
                    description: |-
                      Any value different from 0 indicates an error.  
                      More details can be found in `messages`.
                    minimum: 0
                    maximum: 0
                    examples:
                      - 1
                  messages:
                    type: array
                    description: >-
                      If `error` is `1`, contains zero or more details on the
                      error.
                    examples:
                      - - 9153
          description: ''
      security:
        - ApiKeyAuth: []
        - ApiKeyQueryParam: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Aegister-Token
    ApiKeyQueryParam:
      type: apiKey
      in: query
      name: X-Aegister-Token

````