> ## 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à tabella dell'organizzazione

> Elenca solo le attività di tipo tabella dell'organizzazione (le attività simili a fogli di calcolo che supportano modello/esportazione/importazione).



## OpenAPI

````yaml get /api/v1/v-ciso/organizations/{organizationid}/table-tasks
openapi: 3.1.0
info:
  title: Aegister API
  version: 1.0.5
servers: []
security: []
paths:
  /api/v1/v-ciso/organizations/{organizationid}/table-tasks:
    get:
      tags:
        - V-CISO • Workflows
      summary: List the organization's table tasks
      description: >-
        Discover the org's table tasks (id, title, workflow id, status) so a
        script can find what to fill, then call the per-task `/spec` and
        `/import` endpoints.
      operationId: v-ciso-table-tasks
      parameters:
        - in: path
          name: organizationid
          schema:
            type: integer
          required: true
      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
                      properties:
                        workflow_id:
                          type: string
                        task_id:
                          type: string
                        title:
                          type: object
                          properties:
                            en:
                              type: string
                            it:
                              type: string
                        type:
                          type: string
                          description: table (more types in a later phase)
                        required:
                          type: boolean
                        status:
                          type:
                            - string
                            - 'null'
          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

````