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

# List Tiers

> ⚠️ **BETA endpoint**

This is a work-in-progress documentation of a BETA endpoint. The parameters, fields, request and response bodies, and other data may subject to change. If you want to share feedback or improvements, contact Voucherify support or your Technical Account Manager.

Returns a paginated, cursor-based list of tiers belonging to the specified tier structure.




## OpenAPI

````yaml /openapi/loyalties-v2.json get /v2/loyalties/tier-structures/{id}/tiers
openapi: 3.1.0
info:
  title: Voucherify Loyalty v2 API
  version: 2.0.0
  description: >-
    Complete API documentation for Voucherify Loyalty v2 system. Requires
    LOYALTY_V2 feature flag.
servers:
  - url: https://api.voucherify.io
    description: Production
security:
  - bearerAuth: []
    X-App-Id: []
    X-App-Token: []
tags:
  - name: Card Definitions
    description: >-
      CRUD operations, lifecycle management, and activity history for card
      definitions. Card definitions describe the configuration for loyalty
      cards, including code generation, points expiration, earning/spending
      limits, pending points, refunds, and balance settings.
  - name: Programs
    description: >-
      Loyalty program CRUD, lifecycle management, program-scoped resource
      assignments (card definitions, earning rules, rewards, tier structures),
      member management (create, list, get, activate, deactivate, delete), card
      operations (points adjustment, pending points, expiring points,
      transactions), reward purchases, and activity history.
  - name: Earning Rules
    description: >-
      Manage earning rules that define how customers earn points or receive
      incentives based on triggers (events, segments, custom events). Includes
      CRUD, lifecycle, and activity history.
  - name: Tier Structures
    description: >-
      CRUD operations, lifecycle management, and activity history for tier
      structures. Includes nested tier definitions (create, list, update,
      delete) within tier structures. Tier structures define the tiering model
      for loyalty programs — how members qualify for and move between tiers.
  - name: Incentives
    description: >-
      Manage incentive definitions (fixed points, proportional points, material,
      digital). Includes CRUD, lifecycle transitions, and activity history.
  - name: Rewards
    description: >-
      CRUD, lifecycle operations, and activity history for reward definitions.
      Rewards can be material (product/SKU) or digital (discount coupons, gift
      vouchers).
  - name: Examine
    description: Examines the earning of loyalty points for a loyalty program member.
paths:
  /v2/loyalties/tier-structures/{id}/tiers:
    parameters:
      - $ref: '#/components/parameters/TierStructureId'
    get:
      tags:
        - Tier Structures
      summary: List Tiers
      description: >
        ⚠️ **BETA endpoint**


        This is a work-in-progress documentation of a BETA endpoint. The
        parameters, fields, request and response bodies, and other data may
        subject to change. If you want to share feedback or improvements,
        contact Voucherify support or your Technical Account Manager.


        Returns a paginated, cursor-based list of tiers belonging to the
        specified tier structure.
      operationId: listTiers
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 10
          description: Maximum number of results to return (1-100).
        - name: order
          in: query
          required: false
          schema:
            type: array
            items:
              type: string
              enum:
                - created_at
                - '-created_at'
                - name
                - '-name'
          description: 'Sort order. Prefix with `-` for descending. Default: `-created_at`.'
        - name: cursor
          in: query
          required: false
          schema:
            type: string
          description: Cursor for pagination. Obtained from a previous list response.
      responses:
        '200':
          description: List of tiers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TierListResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    TierStructureId:
      name: id
      in: path
      required: true
      schema:
        type: string
      description: Unique tier structure identifier.
  schemas:
    TierListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Tier'
        cursor:
          oneOf:
            - $ref: '#/components/schemas/PaginationCursor'
            - type: 'null'
        object:
          type: string
          enum:
            - list
      required:
        - data
        - object
    Tier:
      type: object
      description: A tier resource as returned by the API.
      properties:
        id:
          type: string
          description: Unique tier identifier.
        tier_structure_id:
          type: string
          description: ID of the parent tier structure.
        name:
          type: string
          maxLength: 200
          description: Display name.
        qualification_rules:
          oneOf:
            - $ref: '#/components/schemas/TierQualificationRules'
            - type: 'null'
          description: Rules determining how members qualify for this tier.
        downgrade:
          $ref: '#/components/schemas/TierDowngrade'
        metadata:
          type: object
          description: Custom key-value metadata.
          additionalProperties: true
        created_at:
          type: string
          format: date-time
          description: ISO 8601 creation timestamp.
        updated_at:
          oneOf:
            - type: string
              format: date-time
            - type: 'null'
          description: ISO 8601 last-update timestamp.
        object:
          type: string
          enum:
            - tier
          description: Object type discriminator.
      required:
        - id
        - tier_structure_id
        - name
        - downgrade
        - metadata
        - created_at
        - object
    PaginationCursor:
      type: object
      description: Cursor for fetching the next page of results.
      properties:
        next:
          type: string
          description: >-
            Cursor token to pass as the `cursor` query parameter for the next
            page.
        expires_at:
          type: string
          format: date-time
          description: ISO 8601 timestamp when this cursor expires.
      required:
        - next
        - expires_at
    ErrorResponse:
      type: object
      description: Standard error response.
      properties:
        code:
          type: integer
          description: HTTP status code.
        key:
          type: string
          description: Machine-readable error key.
        message:
          type: string
          description: Human-readable error message.
        details:
          type: string
          description: Additional error details.
        request_id:
          type:
            - string
            - 'null'
          description: Request identifier for tracing.
        resource_id:
          type: string
          description: Related resource identifier (when applicable).
        resource_type:
          type: string
          description: Related resource type (when applicable).
      required:
        - code
        - key
        - message
    TierQualificationRules:
      type: object
      description: >
        When `type` is `POINTS`, `min_value` is required and defines the point
        threshold.

        `max_value` is optional (open-ended tier if omitted).

        When `type` is `SEGMENT`, `segment` is required.
      properties:
        type:
          type: string
          enum:
            - POINTS
            - SEGMENT
        min_value:
          oneOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Minimum point value for tier qualification.
        max_value:
          oneOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Maximum point value for tier qualification.
        segment:
          oneOf:
            - $ref: '#/components/schemas/TierQualificationRulesSegment'
            - type: 'null'
          description: Segment reference. Present when `type` is `SEGMENT`.
      required:
        - type
    TierDowngrade:
      type: object
      properties:
        type:
          type: string
          enum:
            - INHERIT
            - NO_DOWNGRADE
          description: >-
            `INHERIT` uses the tier structure's downgrade setting.
            `NO_DOWNGRADE` disables downgrade for this tier.
    TierQualificationRulesSegment:
      type: object
      properties:
        id:
          type: string
          description: Segment identifier.
      required:
        - id
  responses:
    BadRequest:
      description: Validation error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    InternalServerError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    X-App-Id:
      type: apiKey
      name: X-App-Id
      in: header
    X-App-Token:
      type: apiKey
      name: X-App-Token
      in: header

````