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

# List Payment Mediums

> List all payment mediums (both system and custom).



## OpenAPI

````yaml get /admin/payment-mediums/list
openapi: 3.1.0
info:
  title: Decoda API
  description: External API documentation for the Decoda Health platform.
  version: '1.0'
servers: []
security: []
paths:
  /admin/payment-mediums/list:
    get:
      tags:
        - provider
        - admin
        - payment-mediums
      summary: List Payment Mediums
      description: List all payment mediums (both system and custom).
      operationId: list_payment_mediums_admin_payment_mediums_list_get
      parameters:
        - name: TENANT
          in: header
          required: true
          schema:
            type: string
            title: Tenant
          description: The tenant you are making this request on behalf of
        - name: API-KEY
          in: header
          required: true
          schema:
            type: string
            title: Api-Key
          description: Your api key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/PaymentMediumDetail'
                type: array
                title: Response List Payment Mediums Admin Payment Mediums List Get
components:
  schemas:
    PaymentMediumDetail:
      properties:
        name:
          type: string
          title: Name
          description: The name/identifier of the payment medium (primary key).
        isSystem:
          type: boolean
          title: Issystem
          description: Whether this is a system-defined payment medium (immutable).
        isArchived:
          type: boolean
          title: Isarchived
          description: Whether this payment medium is archived.
        createdDate:
          type: string
          format: date-time
          title: Createddate
          description: The date and time the payment medium was created.
        updatedDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updateddate
          description: The date and time the payment medium was last updated.
      type: object
      required:
        - name
        - isSystem
        - isArchived
        - createdDate
      title: PaymentMediumDetail
      description: Schema for reading payment medium records.

````