LinkedIn · Capability

LinkedIn Sales Navigator API — Profile Associations

LinkedIn Sales Navigator API — Profile Associations. 2 operations. Lead operation: LinkedIn Batch Fetch Profile Associations. Self-contained Naftiko capability covering one Linkedin business surface.

Run with Naftiko LinkedinProfile Associations

What You Can Do

GET
Batchgetprofileassociations — LinkedIn Batch Fetch Profile Associations
/v1/salesnavigatorprofileassociations
GET
Getprofileassociation — LinkedIn Fetch Profile Association by Key
/v1/salesnavigatorprofileassociations/{instanceid-partner-recordid}

MCP Tools

linkedin-batch-fetch-profile-associations

LinkedIn Batch Fetch Profile Associations

read-only idempotent
linkedin-fetch-profile-association-key

LinkedIn Fetch Profile Association by Key

read-only idempotent

Capability Spec

sales-navigator-profile-associations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: LinkedIn Sales Navigator API — Profile Associations
  description: 'LinkedIn Sales Navigator API — Profile Associations. 2 operations. Lead operation: LinkedIn Batch Fetch Profile
    Associations. Self-contained Naftiko capability covering one Linkedin business surface.'
  tags:
  - Linkedin
  - Profile Associations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LINKEDIN_API_KEY: LINKEDIN_API_KEY
capability:
  consumes:
  - type: http
    namespace: sales-navigator-profile-associations
    baseUri: https://api.linkedin.com/v2
    description: LinkedIn Sales Navigator API — Profile Associations business capability. Self-contained, no shared references.
    resources:
    - name: salesNavigatorProfileAssociations
      path: /salesNavigatorProfileAssociations
      operations:
      - name: batchgetprofileassociations
        method: GET
        description: LinkedIn Batch Fetch Profile Associations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: ids
          in: query
          type: string
          description: List of association keys in the format List((instanceId,partner,recordId))
          required: true
    - name: salesNavigatorProfileAssociations-InstanceId},{Partner},{RecordId
      path: /salesNavigatorProfileAssociations/{InstanceId},{Partner},{RecordId}
      operations:
      - name: getprofileassociation
        method: GET
        description: LinkedIn Fetch Profile Association by Key
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: InstanceId
          in: path
          type: string
          description: ID of the CRM instance that synced with Sales Navigator
          required: true
        - name: Partner
          in: path
          type: string
          description: ID of the CRM partner that synced with Sales Navigator
          required: true
        - name: RecordId
          in: path
          type: string
          description: ID of the CRM record
          required: true
    authentication:
      type: bearer
      token: '{{env.LINKEDIN_API_KEY}}'
  exposes:
  - type: rest
    namespace: sales-navigator-profile-associations-rest
    port: 8080
    description: REST adapter for LinkedIn Sales Navigator API — Profile Associations. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/salesnavigatorprofileassociations
      name: salesnavigatorprofileassociations
      description: REST surface for salesNavigatorProfileAssociations.
      operations:
      - method: GET
        name: batchgetprofileassociations
        description: LinkedIn Batch Fetch Profile Associations
        call: sales-navigator-profile-associations.batchgetprofileassociations
        with:
          ids: rest.ids
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/salesnavigatorprofileassociations/{instanceid-partner-recordid}
      name: salesnavigatorprofileassociations-instanceid-partner-recordid
      description: REST surface for salesNavigatorProfileAssociations-InstanceId},{Partner},{RecordId.
      operations:
      - method: GET
        name: getprofileassociation
        description: LinkedIn Fetch Profile Association by Key
        call: sales-navigator-profile-associations.getprofileassociation
        with:
          InstanceId: rest.InstanceId
          Partner: rest.Partner
          RecordId: rest.RecordId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: sales-navigator-profile-associations-mcp
    port: 9090
    transport: http
    description: MCP adapter for LinkedIn Sales Navigator API — Profile Associations. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: linkedin-batch-fetch-profile-associations
      description: LinkedIn Batch Fetch Profile Associations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sales-navigator-profile-associations.batchgetprofileassociations
      with:
        ids: tools.ids
      outputParameters:
      - type: object
        mapping: $.
    - name: linkedin-fetch-profile-association-key
      description: LinkedIn Fetch Profile Association by Key
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sales-navigator-profile-associations.getprofileassociation
      with:
        InstanceId: tools.InstanceId
        Partner: tools.Partner
        RecordId: tools.RecordId
      outputParameters:
      - type: object
        mapping: $.