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

# Unlock LinkedIn activity

> Start asynchronous LinkedIn activity analysis for one or more personnel records in an event context.



## OpenAPI

````yaml /openapi.json post /external/personnel/unlock-linkedin-activity
openapi: 3.1.0
info:
  title: Lensmor API
  version: 0.24.1
  description: >-
    Lensmor Event Intelligence API for event discovery, exhibitor research,
    personnel lookup, credits, and profile matching.
  license:
    name: Lensmor Terms of Service
    url: https://www.lensmor.com/terms
servers:
  - url: https://platform.lensmor.com
security:
  - bearerAuth: []
tags:
  - name: Credits
    description: Inspect the credit balance available to the authenticated API key owner.
  - name: Actions
    description: Preflight access and credit-sensitive actions before executing them.
  - name: Events
    description: Discover, inspect, score, rank, and unlock trade show event records.
  - name: Exhibitors
    description: Search and inspect exhibiting companies and their related events.
  - name: Personnel
    description: >-
      Browse event personnel, related events, LinkedIn activity, and outreach
      content.
  - name: Contacts
    description: Search contacts and run asynchronous email or phone unlock workflows.
  - name: Profile Matching
    description: Apply a buyer profile to rank events and recommend exhibitors.
paths:
  /external/personnel/unlock-linkedin-activity:
    post:
      tags:
        - Personnel
      summary: Unlock LinkedIn activity
      description: >-
        Start asynchronous LinkedIn activity analysis for one or more personnel
        records in an event context.
      operationId: unlockLinkedinActivity
      parameters:
        - $ref: '#/components/parameters/CallSource'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LinkedinActivityUnlockRequest'
            example:
              personnel_ids:
                - '789'
              event_id: '139574'
      responses:
        '201':
          description: Per-personnel LinkedIn activity unlock result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LinkedinActivityUnlockResponse'
              example:
                items:
                  - personnel_id: '789'
                    success: true
                    alreadyUnlocked: false
                    taskId: task_321
                    error: null
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  parameters:
    CallSource:
      name: x-call-source
      in: header
      required: false
      schema:
        type: string
        enum:
          - api
          - agent
  schemas:
    LinkedinActivityUnlockRequest:
      type: object
      required:
        - personnel_ids
        - event_id
      properties:
        personnel_ids:
          type: array
          minItems: 1
          maxItems: 50
          items:
            type: string
        event_id:
          type: string
          minLength: 1
          maxLength: 20
      additionalProperties: false
    LinkedinActivityUnlockResponse:
      type: object
      required:
        - items
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/LinkedinActivityUnlockItem'
    LinkedinActivityUnlockItem:
      type: object
      required:
        - personnel_id
        - success
        - alreadyUnlocked
        - taskId
        - error
      properties:
        personnel_id:
          type: string
        success:
          type: boolean
        alreadyUnlocked:
          type: boolean
        taskId:
          type:
            - string
            - 'null'
        error:
          type:
            - string
            - 'null'
    ApiError:
      type: object
      required:
        - code
        - message
        - errorKey
        - traceId
      properties:
        code:
          type: integer
        message:
          type: string
        errorKey:
          type: string
        traceId:
          type: string
  responses:
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Business sk API key
      description: >-
        Send the full Business API key from Settings -> API Keys, for example
        `Authorization: Bearer sk_your_api_key`.

````