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

# Reconnect LinkedIn account

> Reconnects an existing LinkedIn account with new credentials, preserving its ID, limits, history and any sender-profile association. Supports standalone accounts without creating a profile. An optional email must match the existing account. Complete any returned checkpoint through the existing account OTP endpoint.



## OpenAPI

````yaml https://multichannel-api.salesforge.ai/public/multichannel/swagger/doc.json post /multichannel/workspaces/{workspaceID}/linkedin/accounts/{linkedinAccountID}/reconnect
openapi: 3.1.0
info:
  description: Multichannel public endpoints consumed through salesforge-api public docs.
  title: Multichannel Public API
  version: '1.0'
servers:
  - url: https://multichannel-api.salesforge.ai/public
security:
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
  - ApiKeyAuth: []
externalDocs:
  description: ''
  url: ''
paths:
  /multichannel/workspaces/{workspaceID}/linkedin/accounts/{linkedinAccountID}/reconnect:
    post:
      tags:
        - multichannel
      summary: Reconnect LinkedIn account
      description: >-
        Reconnects an existing LinkedIn account with new credentials, preserving
        its ID, limits, history and any sender-profile association. Supports
        standalone accounts without creating a profile. An optional email must
        match the existing account. Complete any returned checkpoint through the
        existing account OTP endpoint.
      parameters:
        - description: Workspace ID
          in: path
          name: workspaceID
          required: true
          schema:
            type: string
        - description: LinkedIn account ID
          in: path
          name: linkedinAccountID
          required: true
          schema:
            type: integer
      requestBody:
        content:
          application/json:
            schema:
              oneOf:
                - type: object
                - $ref: >-
                    #/components/schemas/requests.ReconnectLinkedinAccountRequest
                  description: LinkedIn reconnection credentials
                  summary: request
        description: LinkedIn reconnection credentials
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.LinkedinAccountResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Unauthorized
        '402':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Payment Required
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Not Found
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Conflict
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.ErrorResponse'
          description: Internal Server Error
      security:
        - ApiKeyAuth: []
components:
  schemas:
    requests.ReconnectLinkedinAccountRequest:
      properties:
        email:
          description: >-
            Optional login email; if supplied it must match the existing
            account's email.
          example: user@example.com
          type: string
        firstName:
          example: Ada
          type: string
        lastName:
          example: Lovelace
          type: string
        password:
          type: string
        proxy:
          $ref: '#/components/schemas/requests.ConnectLinkedinAccountProxyRequest'
      required:
        - password
      type: object
    responses.LinkedinAccountResponse:
      properties:
        checkpoint:
          properties:
            data:
              type: string
            publicKey:
              type: string
            type:
              type: string
          type: object
        firstName:
          type: string
        id:
          type: integer
        isConnected:
          type: boolean
        lastName:
          type: string
        linkedinUrl:
          type: string
        premiumType:
          type: string
        profilePictureUrl:
          type: string
        requires2fa:
          type: boolean
        state:
          type: string
        status:
          type: string
      type: object
    responses.ErrorResponse:
      properties:
        data:
          description: >-
            Optional error context. Its shape depends on the message and
            endpoint.
        message:
          description: >-
            Human-readable error text or, for documented cases, a stable
            machine-readable code that clients can branch on.
          example: Invalid request body
          type: string
      type: object
    requests.ConnectLinkedinAccountProxyRequest:
      description: >-
        Proxy to route the LinkedIn session through. Recommended for account
        stability.
      properties:
        host:
          description: >-
            Proxy hostname. An explicit scheme (e.g. socks5://) selects the
            protocol; otherwise http is used.
          example: proxy.example.com
          minLength: 1
          type: string
        password:
          description: Proxy password, when the proxy requires authentication.
          type: string
        port:
          description: Proxy port.
          example: 8080
          type: integer
        username:
          description: Proxy username, when the proxy requires authentication.
          type: string
      required:
        - host
        - port
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: Authorization
      type: apiKey

````