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

# Discover LinkedIn sender ids, labels, availability and remaining capacity visible to the acting workspace member. Never returns provider credentials

> Discover LinkedIn sender ids, labels, availability and remaining capacity visible to the acting workspace member. Never returns provider credentials.



## OpenAPI

````yaml /api-reference/openapi.json get /campaigns/accounts/linkedin
openapi: 3.1.0
info:
  title: Dench API
  version: 1.0.0
  description: >-
    Versioned Dench workspace API. The operation registry is shared with the
    Dench CLI parity layer, so every CLI command maps to an endpoint here.
servers:
  - url: https://www.dench.com/api/v1
security: []
tags:
  - name: agent-config
    description: Agent Config operations.
  - name: approvals
    description: Approvals operations.
  - name: apps
    description: Apps operations.
  - name: auth
    description: Auth operations.
  - name: billing
    description: Billing operations.
  - name: browser
    description: Browser operations.
  - name: campaigns
    description: Campaigns operations.
  - name: chat
    description: Chat operations.
  - name: crm
    description: Crm operations.
  - name: email
    description: Email operations.
  - name: files
    description: Files operations.
  - name: gateway
    description: Gateway operations.
  - name: lists
    description: Lists operations.
  - name: local
    description: Local operations.
  - name: meetings
    description: Meetings operations.
  - name: members
    description: Members operations.
  - name: memory
    description: Memory operations.
  - name: meta
    description: Meta operations.
  - name: notifications
    description: Notifications operations.
  - name: routines
    description: Routines operations.
  - name: workspace
    description: Workspace operations.
paths:
  /campaigns/accounts/linkedin:
    get:
      tags:
        - campaigns
      summary: >-
        Discover LinkedIn sender ids, labels, availability and remaining
        capacity visible to the acting workspace member. Never returns provider
        credentials
      description: >-
        Discover LinkedIn sender ids, labels, availability and remaining
        capacity visible to the acting workspace member. Never returns provider
        credentials.
      operationId: campaigns_accounts_linkedin
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    linkedinAccountId:
                      type: string
                      description: >-
                        Local sender id for linkedinAccountIds, never a provider
                        credential.
                    displayName:
                      type: string
                    status:
                      type: string
                      enum:
                        - running
                        - paused
                        - disconnected
                        - errored
                    ownerName:
                      type: string
                    isOwner:
                      type: boolean
                    visibility:
                      type: string
                      enum:
                        - private
                        - shared
                    remainingToday:
                      type: object
                      properties:
                        invites:
                          type: number
                          minimum: 0
                          description: >-
                            Daily capacity, also bounded by the rolling weekly
                            invite limit.
                        messages:
                          type: number
                          minimum: 0
                        profiles:
                          type: number
                          minimum: 0
                      required:
                        - invites
                        - messages
                        - profiles
                      additionalProperties: false
                    remainingInvitesThisWeek:
                      type: number
                      minimum: 0
                    availability:
                      type: string
                      enum:
                        - ready
                        - paused
                        - disconnected
                        - errored
                        - disabled
                        - circuit_break
                        - spacing
                        - outside_window
                        - daily_cap
                      description: >-
                        Account availability snapshot. Queued work, campaign
                        limits and launch/dispatch checks still apply.
                  required:
                    - linkedinAccountId
                    - displayName
                    - status
                    - ownerName
                    - isOwner
                    - visibility
                    - remainingToday
                    - remainingInvitesThisWeek
                    - availability
                  additionalProperties: false
              example:
                - linkedinAccountId: <linkedinAccountId>
                  displayName: Ada Lovelace
                  status: running
                  ownerName: Ada
                  isOwner: true
                  visibility: private
                  remainingToday:
                    invites: 12
                    messages: 36
                    profiles: 40
                  remainingInvitesThisWeek: 50
                  availability: ready
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalError'
      security:
        - DenchApiKey: []
        - AgentSession: []
components:
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Operation or resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    InternalError:
      description: Server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  schemas:
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
            - type
            - code
          properties:
            message:
              type: string
            type:
              type: string
            code:
              type: string
            details: {}
  securitySchemes:
    DenchApiKey:
      type: http
      scheme: bearer
      bearerFormat: DENCH_API_KEY
      description: >-
        Workspace-scoped Dench API key from workspace settings. This is the same
        key used by DENCH_API_KEY in sandboxes.
    AgentSession:
      type: http
      scheme: bearer
      bearerFormat: dch_agent_*
      description: >-
        Agent session token created by `dench signin`. Gateway-backed routes
        exchange this token for the workspace gateway key.

````