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

# Get enabled payment product



## OpenAPI

````yaml /openapi/ems-api.json get /accounts/{accountId}/payment-products/{paymentProductId}
openapi: 3.0.3
info:
  title: OpenCard EMS API
  version: '1.0'
  description: >-
    API for Expense Management Systems. Manage TPAs, organizations, card
    holders, and webhooks. Receive transaction data via webhooks — not by
    polling this API.
  contact:
    email: support@opencard.io
servers:
  - url: https://api.opencard.io/api/v1/application
    description: Production
  - url: https://sandbox-api.opencard.io/api/v1/application
    description: Sandbox
security: []
paths:
  /accounts/{accountId}/payment-products/{paymentProductId}:
    get:
      tags:
        - Payment Products
      summary: Get enabled payment product
      operationId: getEnabledPaymentProduct
      parameters:
        - $ref: '#/components/parameters/accountId'
        - name: paymentProductId
          in: path
          required: true
          description: Payment product ID
          schema:
            type: integer
      responses:
        '200':
          description: Payment product
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaymentProduct'
              example:
                id: 1
                card_issuer_id: 1
                name: Acme Corporate Card
                subtitle: Corporate Card
                description_short: Streamline expense management with real-time card data.
                description_long: >-
                  Full product description shown after the client activates this
                  card program.
                funding: debit
                liability: company
                scheme:
                  code: mastercard
                  logo_url: >-
                    https://sandbox-api.opencard.io/images/card-schemes/mastercard.svg
                payment_program:
                  id: 1
                  name: Acme Corporate
                  logo_url: >-
                    https://sandbox-api.opencard.io/logos?type=card_issuers&name=acme-card-logo.png
                issuer:
                  id: 1
                  name: Acme Card Issuer
                  legal_name: Acme Card Issuer AB
                  logo_url: >-
                    https://sandbox-api.opencard.io/logos?type=card_issuers&name=acme-card-logo.png
      security:
        - opencard_auth:
            - account-payment-products-read
components:
  parameters:
    accountId:
      name: accountId
      in: path
      required: true
      description: Your account ID
      schema:
        type: integer
  schemas:
    PaymentProduct:
      type: object
      description: >-
        A card product clients can activate — debit or credit under a payment
        program, issued by a bank.
      properties:
        id:
          type: integer
          description: Payment product ID
        card_issuer_id:
          type: integer
          description: Pass this as `card_issuer_id` on `POST .../tpas`.
        name:
          type: string
          nullable: true
          description: Product title
        subtitle:
          type: string
          nullable: true
          description: Product subtitle (e.g. Corporate Card)
        description_short:
          type: string
          nullable: true
        description_long:
          type: string
          nullable: true
        funding:
          type: string
          nullable: true
          enum:
            - debit
            - credit
          description: How the card is funded
        liability:
          type: string
          nullable: true
        scheme:
          type: object
          properties:
            code:
              type: string
              nullable: true
              description: e.g. mastercard, visa
            logo_url:
              type: string
              nullable: true
              description: Visa / Mastercard badge
        payment_program:
          type: object
          properties:
            id:
              type: integer
              nullable: true
            name:
              type: string
              nullable: true
              description: Program name shown after the client selects the product
            logo_url:
              type: string
              nullable: true
              description: Program logo
        issuer:
          type: object
          properties:
            id:
              type: integer
              nullable: true
            name:
              type: string
              nullable: true
              description: Short issuer name
            legal_name:
              type: string
              nullable: true
            logo_url:
              type: string
              nullable: true
              description: Issuer / bank mark when available
  securitySchemes:
    opencard_auth:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.opencard.io/oauth/token
          scopes:
            accounts-read: Read your account
            accounts-write: Update your account
            oauth-clients-read: Read OAuth clients
            oauth-clients-write: Create OAuth clients
            public-records-read: Company registry lookup
            account-tpas-read: Read TPAs
            account-tpas-write: Create TPAs
            account-tpas-delete: Delete TPAs
            account-tpa-signatories-read: Read TPA signatories
            account-tpa-signatories-write: Add TPA signatories
            account-tpa-identities-read: List identities on TPA
            billings-write: Create billing profiles
            payment-products-read: List available payment products (catalog)
            account-payment-products-read: List enabled payment products
            account-payment-products-write: Enable and disable payment products
            organizations-read: Read organizations
            organizations-write: Create organizations
            card-holders-read: Read card holders
            card-holders-write: Create and update card holders
            card-holders-delete: Delete card holders
            webhooks-read: Read webhooks
            webhooks-write: Create webhooks
            webhook-events-read: Read webhook delivery log
            receipts-write: Scan receipts (OCR)

````