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

# List My Promotions

> List the authenticated user's promotion redemptions, split into `active` (drawable now)
and `history` (exhausted / expired / revoked).

Used by the Settings → Billing tab to render the Credits & Promotions section.



## OpenAPI

````yaml /openapi.json get /v1/users/me/promotions
openapi: 3.1.0
info:
  title: Universal Document AI API
  description: AI-powered document editing with multi-tenant organization support
  version: 2.0.0
servers: []
security: []
paths:
  /v1/users/me/promotions:
    get:
      tags:
        - promo
      summary: List My Promotions
      description: >-
        List the authenticated user's promotion redemptions, split into `active`
        (drawable now)

        and `history` (exhausted / expired / revoked).


        Used by the Settings → Billing tab to render the Credits & Promotions
        section.
      operationId: list_my_promotions_v1_users_me_promotions_get
      parameters:
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserPromotionsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    UserPromotionsResponse:
      properties:
        active:
          items:
            $ref: '#/components/schemas/ActivePromotionOut'
          type: array
          title: Active
        history:
          items:
            $ref: '#/components/schemas/HistoricalPromotionOut'
          type: array
          title: History
      type: object
      required:
        - active
        - history
      title: UserPromotionsResponse
      description: >-
        Listing of the authenticated user's promotion grants, split by active
        vs. history.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ActivePromotionOut:
      properties:
        redemption_id:
          type: string
          title: Redemption Id
        name:
          type: string
          title: Name
        ops_granted:
          type: integer
          title: Ops Granted
        ops_remaining:
          type: integer
          title: Ops Remaining
        redeemed_at:
          type: string
          title: Redeemed At
        expires_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Expires At
      type: object
      required:
        - redemption_id
        - name
        - ops_granted
        - ops_remaining
        - redeemed_at
        - expires_at
      title: ActivePromotionOut
      description: >-
        A single active (drawable) promotion grant belonging to the current
        user.
    HistoricalPromotionOut:
      properties:
        redemption_id:
          type: string
          title: Redemption Id
        name:
          type: string
          title: Name
        ops_granted:
          type: integer
          title: Ops Granted
        ops_remaining:
          type: integer
          title: Ops Remaining
        redeemed_at:
          type: string
          title: Redeemed At
        expires_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Expires At
        status:
          type: string
          title: Status
      type: object
      required:
        - redemption_id
        - name
        - ops_granted
        - ops_remaining
        - redeemed_at
        - expires_at
        - status
      title: HistoricalPromotionOut
      description: >-
        An exhausted, expired, or revoked promotion grant kept for the user's
        history view.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````