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

# List Confluence spaces using stored connector credentials

> List Confluence spaces using credentials stored in the SecretStore.

Unlike the POST variant (which requires credentials in the request body),
this endpoint resolves credentials server-side so that secrets never leave
the backend.



## OpenAPI

````yaml /api-reference/catalog-api.json get /connectors/confluence/spaces
openapi: 3.1.0
info:
  title: Strattum Catalog API
  description: Expõe a estrutura do data lake — camadas, conectores e tabelas.
  version: 0.1.0
servers: []
security: []
paths:
  /connectors/confluence/spaces:
    get:
      tags:
        - connectors
      summary: List Confluence spaces using stored connector credentials
      description: >-
        List Confluence spaces using credentials stored in the SecretStore.


        Unlike the POST variant (which requires credentials in the request
        body),

        this endpoint resolves credentials server-side so that secrets never
        leave

        the backend.
      operationId: list_confluence_spaces_from_connector_connectors_confluence_spaces_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConfluenceSpacesResponse'
components:
  schemas:
    ConfluenceSpacesResponse:
      properties:
        spaces:
          items:
            $ref: '#/components/schemas/ConfluenceSpace'
          type: array
          title: Spaces
      type: object
      required:
        - spaces
      title: ConfluenceSpacesResponse
    ConfluenceSpace:
      properties:
        key:
          type: string
          title: Key
        name:
          type: string
          title: Name
      type: object
      required:
        - key
        - name
      title: ConfluenceSpace

````