Payment Modes

Checks which Cashfree payment methods are enabled for a merchant account via the eligibility API.

Updated Sep 8, 2026
One-click install
npx skills add https://github.com/dasara-varun/orange --skill payment-modes-dasara-varun
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: Payment Modes
Source: https://github.com/dasara-varun/orange/tree/main/.cursor/cashfree-skills/eligible-payment-modes
Command: npx skills add https://github.com/dasara-varun/orange --skill payment-modes-dasara-varun

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Merchants integrating Cashfree often guess which payment methods (cards, UPI, netbanking, wallets, paylater) are active on their account, leading to checkout failures and misconfigured integrations. This Skill queries the Cashfree eligibility API as the single source of truth for enabled payment modes. ## Core Features & Use Cases - Eligibility API Query: Calls the Cashfree eligibility endpoint with sandbox or production credentials to list enabled payment methods and sub-options like netbanking bank codes. - Per-Order and BIN Checks: Scopes eligibility to a specific order, card BIN, or customer phone for PayLater and EMI scenarios. - Checkout Restrictions: Configures payment_methods_filters in the Create Order API to allow specific methods, card schemes, issuers, BINs, or EMI tenures. - Use Case: Before building a checkout page, verify that UPI and netbanking are active on the merchant account, then restrict the order to Visa cards only using payment method filters. ## Quick Start Check which payment methods are enabled for my Cashfree merchant account using my sandbox API credentials.

Frequently Asked Questions about Payment Modes

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check which payment methods are enabled on my Cashfree account?▼

Call the Cashfree eligibility payment methods API with your App ID and Secret Key to get a JSON array of methods with eligibility flags. Alternatively, check Merchant Dashboard under Settings > Payment Gateway > Payment Methods if you lack API credentials.

How to restrict payment methods for a specific Cashfree order?▼

Pass payment_methods_filters in the Create Order API with action ALLOW and values such as credit_card, upi, or specific card schemes and BINs. If omitted, all enabled payment methods appear at checkout by default.

Does the Cashfree eligibility API work in sandbox mode?▼

Yes, use sandbox.cashfree.com with sandbox credentials; production keys only work against api.cashfree.com. Mismatched keys and hosts cause 401 authentication errors.

Why does Cashfree return payment mode not enabled for merchant?▼

This error means the method is not activated on the merchant account, confirmed by eligibility false in the API response. Activate it via Settings > Payment Gateway > Payment Methods in the Merchant Dashboard.

Can I check Cashfree eligibility without API credentials?▼

No, the eligibility API requires both App ID and Secret Key and must never be called with guessed or placeholder secrets. Without credentials, use the Merchant Dashboard payment methods page instead.