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

# Conectar Provedor

> Inicia o fluxo de autorização OAuth2 com o marketplace especificado, retornando a URL de redirecionamento correspondente.

### Path

<ParamField path="provider" type="string" required>
  Código do marketplace desejado. Exemplos: `meli`, `shopee`, `magalu`, `b2w`, `amazon`.
</ParamField>

### Response

<ResponseExample>
  ```json Response theme={null}
  {
    "redirectUrl": "https://auth.mercadolivre.com.br/authorization?response_type=code&client_id=12345678&redirect_uri=..."
  }
  ```
</ResponseExample>


## OpenAPI

````yaml get /integrations/{provider}/connect
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/{provider}/connect:
    get:
      tags:
        - Integrations
      operationId: IntegrationsController_connect
      parameters:
        - name: provider
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''

````