> ## Documentation Index
> Fetch the complete documentation index at: https://docs.domsoftware.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Listar Conexões Ativas

> Exibe a lista de canais de venda (marketplaces) já conectados à conta do lojista (tenant atual).

### Response

<ResponseExample>
  ```json Response theme={null}
  {
    "connections": [
      {
        "id": "488fa4bd-9e19-4eb5-b461-abeb38a0f9de",
        "tenantId": "e305e9a4-585e-49b8-bc88-9fba992c6326",
        "marketplace": "meli",
        "sellerId": "987654321",
        "status": "active",
        "lastSyncedAt": "2024-02-15T12:00:00.000Z",
        "lastSyncError": null,
        "createdAt": "2024-01-01T12:00:00.000Z",
        "updatedAt": "2024-02-15T12:00:00.000Z"
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml get /integrations/connections
openapi: 3.0.0
info:
  title: Hub Marketplace API
  description: API for managing marketplace listings and keys
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: listings
    description: ''
paths:
  /integrations/connections:
    get:
      tags:
        - Integrations
      operationId: IntegrationsController_listConnections
      parameters: []
      responses:
        '200':
          description: ''

````