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

# List Identity Token metadata



## OpenAPI

````yaml /api-reference/openapi.yaml get /v1/projects/{project_id}/identities/{identity_id}/tokens
openapi: 3.1.0
info:
  title: Qumo Deploy REST API
  description: >
    The Qumo Deploy REST API provides programmatic control over edge relay
    clusters,

    ephemeral Relay Credential issuance, tenant lifecycle, machine identities,
    and billing.

    Authentication is operation-specific: Relay Keys authenticate relay access
    operations,

    while user sessions and Identity Tokens authenticate control-plane
    operations.
  version: 1.0.0
servers:
  - url: https://api.qumo-deploy.com
    description: Production Control Plane
  - url: http://localhost:8080
    description: Local Development / Sandbox
security:
  - BearerAuth: []
paths:
  /v1/projects/{project_id}/identities/{identity_id}/tokens:
    get:
      summary: List Identity Token metadata
      parameters:
        - in: path
          name: project_id
          required: true
          schema:
            type: string
        - in: path
          name: identity_id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Active Identity Tokens; raw values are never returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IdentityTokenList'
      security:
        - BearerAuth: []
components:
  schemas:
    IdentityTokenList:
      type: object
      required:
        - tokens
      properties:
        tokens:
          type: array
          items:
            $ref: '#/components/schemas/IdentityToken'
    IdentityToken:
      type: object
      required:
        - id
        - created_at
        - scopes
      properties:
        id:
          type: string
        value:
          type: string
          description: Returned only once when the token is created.
        created_at:
          type: string
          format: date-time
        expires_at:
          type: string
          format: date-time
          nullable: true
        scopes:
          type: array
          items:
            type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: SessionOrIdentityToken
      description: |
        User session or Identity Token. Relay Keys are not accepted.

````