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

# List Enrollment Tokens



## OpenAPI

````yaml /api-reference/openapi.json get /api/runtime-security/agent/enrollment-tokens
openapi: 3.1.0
info:
  title: Blindsight API
  version: 0.1.0
  description: >-
    The full Blindsight REST surface, generated from the running application.
    Replace the server host with your own deployment.


    For the Runtime Security integration surface (scan, proxy, tool calls) see
    the Runtime Security spec, which is hand written and carries worked
    examples.
servers:
  - url: https://api.your-blindsight.com
    description: Your Blindsight deployment
security: []
paths:
  /api/runtime-security/agent/enrollment-tokens:
    get:
      tags:
        - runtime-security-agent
      summary: List Enrollment Tokens
      operationId: list_enrollment_tokens_api_runtime_security_agent_enrollment_tokens_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/EnrollmentTokenRead'
                type: array
                title: >-
                  Response List Enrollment Tokens Api Runtime Security Agent
                  Enrollment Tokens Get
components:
  schemas:
    EnrollmentTokenRead:
      properties:
        uuid:
          type: string
          title: Uuid
        name:
          type: string
          title: Name
        token_prefix:
          type: string
          title: Token Prefix
        last_used_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Used At
        revoked_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Revoked At
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - uuid
        - name
        - token_prefix
        - created_at
      title: EnrollmentTokenRead

````