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

# Get Connector Token



## OpenAPI

````yaml get /api/embedded/v1/connectors/connector_token/{temporary_token}
openapi: 3.1.0
info:
  title: Bindbee APIs
  version: 0.1.0
servers:
  - url: https://api.bindbee.dev
  - url: https://api-eu.bindbee.dev
security: []
paths:
  /api/embedded/v1/connectors/connector_token/{temporary_token}:
    get:
      tags:
        - Connector
      summary: Get Connector Token
      operationId: >-
        get_connector_token_api_embedded_v1_connectors_connector_token__temporary_token__get
      parameters:
        - name: temporary_token
          in: path
          required: true
          schema:
            type: string
            title: Temporary Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CurrentConnectorResponseModel'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CurrentConnectorResponseModel:
      properties:
        connector_token:
          type: string
          title: Connector Token
          description: >-
            Connector token of the connector using which you can make API calls
            to Bindbee
          examples:
            - jk23h4jk23hk4j2h3kj4h23kjh4k23jh4k2j3h4
        connector_id:
          type: string
          format: uuid
          title: Connector Id
          description: The ID of the connector associated with the request
          examples:
            - 123e4567-e89b-12d3-a456-426614174000
      type: object
      required:
        - connector_token
        - connector_id
      title: CurrentConnectorResponseModel
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````