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

# List Social Publishing Connections

> List Social Publishing Connections.



## OpenAPI

````yaml GET /ai/social/connections
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Tags
    description: Tag management endpoints
paths:
  /ai/social/connections:
    get:
      tags:
        - AI
      summary: List the tenant's social publishing connections
      description: >-
        Returns every stored connection for the tenant. Only linkedin, telegram
        and twitter are supported. Secrets are stored encrypted and are always
        masked in the response (`abcd...wxyz`).
      responses:
        '200':
          description: OK (connections)
          content:
            application/json:
              example:
                success: true
                statusCode: 200
                message: Social connections loaded
                data:
                  - tenantId: '{{objectId}}'
                    provider: linkedin
                    isActive: true
                    config:
                      accessToken: AQV...XyZ
                      authorUrn: urn:li:organization:123456
                    updatedBy: '{{objectId}}'
                    updatedAt: '2025-10-01T12:00:00.000Z'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden (role not allowed)
        '500':
          description: Failed to load connections
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````