#krishna_awate
1 messages · Page 1 of 1 (latest)
Hi
Are you referring to the supported_payment_currencies propoerty?
https://stripe.com/docs/api/country_specs/object#country_spec_object-supported_payment_currencies
so yeah the account in that country can accept those currencies.
Is this realted to account?
If I have Indian account then?
Country Spec, is a set of rules for Account according to a specific country:
https://stripe.com/docs/api/country_specs
I don't understand this? You want to fetch the Country Spec for an Indian Account ?
If I have Indian Stripe account and I fetch for US Specs then can I receive payement in US currencies?
no for Indian Stripe Account, you need to fetch Indian Specs.
Okay got it.
Hello
Can I get details of account usign account ID
If account is not mine.
One more question sir. If I have an account which is connected.
So if parent account is US and connected is Indian
so which Country Spec should I use
It depends on who will be making the payments. For example:
- destination charge (without on_behalf_of) then the platform account country spec
- Direct charge then the connected account country spec
...
Okay
acct_1NWGciRd1p7o0FMc
from this accunt id I want to show currencies
{
"status": "success",
"data": {
"id": "acct_1NWGciRd1p7o0FMc",
"object": "account",
"capabilities": {
"acss_debit_payments": "active",
"affirm_payments": "inactive",
"afterpay_clearpay_payments": "inactive",
"bancontact_payments": "active",
"card_payments": "active",
"cartes_bancaires_payments": "pending",
"cashapp_payments": "active",
"eps_payments": "active",
"giropay_payments": "active",
"ideal_payments": "active",
"klarna_payments": "active",
"link_payments": "active",
"p24_payments": "active",
"sepa_debit_payments": "active",
"sofort_payments": "active",
"transfers": "active",
"us_bank_account_ach_payments": "active"
},
"charges_enabled": true,
"country": "US",
"created": 1689935508,
"default_currency": "usd",
"details_submitted": true,
}
So should I use "country": "US" to get country Specs
yes, this account is based in US.
👋 taking over for my colleague. Let me know if there's any follow-up Qs I can answer!
I have this account acct_1NWGciRd1p7o0FMc
when I retrieve info I get
{
"status": "success",
"data": {
"id": "acct_1NWGciRd1p7o0FMc",
"object": "account",
"capabilities": {
"acss_debit_payments": "active",
"affirm_payments": "inactive",
"afterpay_clearpay_payments": "inactive",
"bancontact_payments": "active",
"card_payments": "active",
"cartes_bancaires_payments": "pending",
"cashapp_payments": "active",
"eps_payments": "active",
"giropay_payments": "active",
"ideal_payments": "active",
"klarna_payments": "active",
"link_payments": "active",
"p24_payments": "active",
"sepa_debit_payments": "active",
"sofort_payments": "active",
"transfers": "active",
"us_bank_account_ach_payments": "active"
},
"charges_enabled": true,
"country": "US",
"created": 1689935508,
"default_currency": "usd",
"details_submitted": true,
}
so to get country_specs to check which currecies are acceptable, can I use "country": "US", ?
yes