# Getting error with some payment\_method - country combinations

**URL:** https://community.rapyd.net/t/getting-error-with-some-payment-method-country-combinations/1845
**Category:** 🙋🏽‍♀️🙋🏽‍♂️ Ask Questions
**Tags:** checkout-toolkit
**Created:** [May 24, 2022, 1:59pm UTC](https://community.rapyd.net/t/getting-error-with-some-payment-method-country-combinations/1845 "2022-05-24T13:59:09Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![solid-droid](https://sea2.discourse-cdn.com/flex016/user_avatar/community.rapyd.net/solid-droid/32/1610_2.png) [@solid-droid](https://community.rapyd.net/u/solid-droid)
#### Post date: [May 24, 2022, 1:59pm UTC](https://community.rapyd.net/t/getting-error-with-some-payment-method-country-combinations/1845/1 "2022-05-24T13:59:10Z")

</div>

i am getting an error when i try bank\_transfer from India

```json
{
    "amount": "751.77",
    "country": "IN",
    "currency": "INR",
    "payment_method_type_categories": [
        "bank_transfer"
    ],
    "ewallets": [
        {
            "ewallet": "ewallet_fa5b17e3bd5f281e46422f9ec743b807",
            "amount": "751.77"
        }
    ],
    "escrow": true,
    "escrow_release_days": 2
}

```

error status 400:

```json
{
    "error_code": "ERROR_CHECKOUT_PAYMENT_METHOD_CATEGORY_CURRENCY_MISMATCH",
    "status": "ERROR",
    "message": "",
    "response_code": "ERROR_CHECKOUT_PAYMENT_METHOD_CATEGORY_CURRENCY_MISMATCH",
    "operation_id": "e1930c38-2cd3-4a31-9b9c-f37a2864cbde"
}

```

It works if i try for US:

```json
{
    "amount": "10.00",
    "country": "US",
    "currency": "USD",
    "payment_method_type_categories": [
        "bank_transfer"
    ],
    "ewallets": [
        {
            "ewallet": "ewallet_fa5b17e3bd5f281e46422f9ec743b807",
            "amount": "10.00"
        }
    ],
    "escrow": true,
    "escrow_release_days": 2
}

```

this works status 200  
ewallet payment method from india works fine. I only tested these 2… not sure what iam missing.

---

<div class="post-metadata">

### Author: ![fredjinbility](https://avatars.discourse-cdn.com/v4/letter/f/22d042/32.png) [@fredjinbility](https://community.rapyd.net/u/fredjinbility)
#### Post date: [May 24, 2022, 6:23pm UTC](https://community.rapyd.net/t/getting-error-with-some-payment-method-country-combinations/1845/2 "2022-05-24T18:23:38Z")

</div>

@solid-droid, You need to make an API Call to get full list of payments method supported in India.

This docs will provide you an API Call to get the list of country for Rapyd payments [List of Payments docs link](https://docs.rapyd.net/build-with-rapyd/reference/payment-method-type-object#list-payment-methods-by-country)

In your own case, the API Get request will look like **/v1/payment\_methods/country?country=IN&currency=INR**

Thanks
