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

# List Setup Tokens

> Setup links for a connection, so a third party fills in credentials in their own browser.

Create one to get a token, then send its recipient to ``{WEB_APP_URL}/lcl/{token}``: they
configure the connection without a Nekt account, and the credentials never pass through
you. Optionally restrict what the link exposes with ``connector_config_fields``, and have
the connection announce completion with its ``callback_webhook``.

The token is returned in clear text only when it is created, and is redacted on every
later read. Managing setup links requires manager access on the connection — the token is
a config-write capability, so listing links is as sensitive as creating one.



## OpenAPI

````yaml GET /api/v1/live-connections/{live_connection_slug}/setup-tokens/
openapi: 3.0.3
info:
  title: Nekt API
  version: v1
  description: Nekt API Documentation
  contact:
    email: support@nekt.ai
servers:
  - url: https://api.nekt.ai
security: []
paths:
  /api/v1/live-connections/{live_connection_slug}/setup-tokens/:
    get:
      tags:
        - v1
      description: >-
        Setup links for a connection, so a third party fills in credentials in
        their own browser.


        Create one to get a token, then send its recipient to
        ``{WEB_APP_URL}/lcl/{token}``: they

        configure the connection without a Nekt account, and the credentials
        never pass through

        you. Optionally restrict what the link exposes with
        ``connector_config_fields``, and have

        the connection announce completion with its ``callback_webhook``.


        The token is returned in clear text only when it is created, and is
        redacted on every

        later read. Managing setup links requires manager access on the
        connection — the token is

        a config-write capability, so listing links is as sensitive as creating
        one.
      operationId: v1_live_connections_setup_tokens_list
      parameters:
        - in: path
          name: live_connection_slug
          schema:
            type: string
          description: The slug of the live connection
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LiveConnectionSetupToken'
          description: ''
      security:
        - ApiKeyAuth: []
components:
  schemas:
    LiveConnectionSetupToken:
      type: object
      description: >-
        A time-limited link that lets someone without a Nekt account configure
        this connection.
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        token:
          type: string
          readOnly: true
        expires_in_seconds:
          type: integer
          minimum: 1
          writeOnly: true
        expires_at:
          type: string
          format: date-time
          readOnly: true
        connector_config_fields:
          nullable: true
          description: >-
            Restricts which connector config fields are visible/editable through
            this setup link. Same shape as the config: true/false, a list of
            field names, or a nested object. NULL means no restriction (the
            whole config template).
        created_at:
          type: string
          format: date-time
          readOnly: true
        created_by:
          type: integer
          readOnly: true
      required:
        - created_at
        - created_by
        - expires_at
        - id
        - token
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API Key authentication. Format: ''x-api-key: api_key'''

````