> ## 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.

# Delete Setup Token

> 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 DELETE /api/v1/live-connections/{live_connection_slug}/setup-tokens/{id}/
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/{id}/:
    delete:
      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_destroy
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          description: A UUID string identifying this live connection setup token.
          required: true
        - in: path
          name: live_connection_slug
          schema:
            type: string
          description: The slug of the live connection
          required: true
      responses:
        '204':
          description: No response body
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API Key authentication. Format: ''x-api-key: api_key'''

````