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

# My Sent Connections

> Retrieves a list of connection invitations sent by the current user.

This endpoint works only with custom accounts. Please check the [Using Custom Accounts](/guides/custom-accounts) guide for more details on how to set up and use custom accounts.


## OpenAPI

````yaml GET /linkedin/sent-connections
openapi: 3.0.1
info:
  title: HarvestAPI LinkedIn API reference
  description: HarvestAPI LinkedIn API reference
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.harvestapi.io
security:
  - ApiKeyAuthHeader: []
paths:
  /linkedin/sent-connections:
    get:
      summary: Get my sent connection invitations
      description: Retrieves a list of connection invitations sent by the current user.
      parameters:
        - name: cookie
          in: query
          required: true
          description: >-
            LinkedIn cookies. Please check
            https://docs.harvestapi.io/guides/custom-accounts for more details
            on how to get and use the cookies.
          schema:
            type: string
        - name: proxy
          in: query
          description: >-
            Proxy to use for this request. More details -
            https://docs.harvestapi.io/guides/custom-accounts
          schema:
            type: string
        - name: userAgent
          in: query
          description: >-
            User-Agent to use for this request. More details -
            https://docs.harvestapi.io/guides/custom-accounts
          schema:
            type: string
      responses:
        '200':
          description: Successfully retrieved sent connections
          content:
            application/json:
              schema:
                type: object
                properties:
                  element:
                    type: object
                    properties:
                      sentInvitations:
                        type: array
                        items:
                          type: object
                          properties:
                            invitationId:
                              type: string
                            firstName:
                              type: string
                            lastName:
                              type: string
                            inviterId:
                              type: string
                            sharedSecret:
                              type: string
                      myProfile:
                        type: object
                        properties:
                          firstName:
                            type: string
                          lastName:
                            type: string
                          id:
                            type: string
                          publicIdentifier:
                            type: string
                          linkedinUrl:
                            type: string
                            format: url
                  status:
                    type: string
                  error:
                    type: string
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    ApiKeyAuthHeader:
      type: apiKey
      in: header
      name: X-API-Key

````