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

# Get Connection Detail

> Get connection detail by ID. Returns only non-sensitive information.

<span style={{display: "flex", gap: "10px", flexDirection: "row", alignItems: "center"}}>
  <img src="https://cdn.peaka.com/badges/partner-api-key-badge.png" />

  <img src="https://cdn.peaka.com/badges/project-api-key-badge.png" />
</span>


## OpenAPI

````yaml get /connections/{projectId}/{connectionId}/detail
openapi: 3.0.1
info:
  title: Peaka Gateway API
  description: Peaka Gateway API Documentation
  version: '1.0'
servers:
  - url: https://partner.peaka.studio/api/v1
    description: Default Server URL (US Zone)
  - url: https://partner.eu.peaka.studio/api/v1
    description: EU Zone
security:
  - bearerAuth: []
paths:
  /connections/{projectId}/{connectionId}/detail:
    get:
      tags:
        - Connections
      summary: Get Connection Detail
      description: Get connection detail by ID. Returns only non-sensitive information.
      operationId: getConnectionView
      parameters:
        - name: projectId
          in: path
          description: ID of the project
          required: true
          schema:
            type: string
          example: mtKDhe1U
        - name: connectionId
          in: path
          description: ID of the connection
          required: true
          schema:
            type: string
          example: 8db17e23-29de-4dab-8886-af9717e0e742
      responses:
        '200':
          description: Connection Detail
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                description: |-
                  Credential object for the connection.

                   Its structure is dependent on the connection type and can be fetched by following url: /connections/config
              examples:
                Connection Detail:
                  description: Sample Bullhorn Connection parameters
                  value:
                    type: bullhorn
                    restApiTokenUrl: http://a.b.c
                    swimlane: '123'
                    corpToken: '123'
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        Use the Authorization header with the value 'Bearer <apiKey>' to
        authenticate. Partner API Keys have full access; Project API Keys are
        limited to their project scope. Learn more:
        https://docs.peaka.com/api-reference/authentication
      scheme: bearer
      bearerFormat: Api Key

````