#allianceRes
1 messages · Page 1 of 1 (latest)
You'd want to check transfers_enabled instead
Oh it's just called transfers: https://stripe.com/docs/api/accounts/object#account_object-capabilities-transfers
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok thank you
So charges_enabled does not guarantee that the transfer can be carried out without problems?
if, for example, a merchant's Stripe account is not valid because, for example, he did not provide all the necessary documents, the capabilities.transfers of his account will be set to "inactive" ?
Yeah it'll only be active if you can actually transfer to it
Ok thank you for your clarification.
I just made this request but I don't see capabilites.transfer
curl https://api.stripe.com/v1/accounts/acct_1NTLNMGabRauFJqG -u sk_test_0xaUfkmH1Ud1Lc1n9lBLQ2rh
I get this:
"capabilities": {
"card_payments": "inactive",
"platform_payments": "inactive"
}
Card payments needs to be active first I believe
I got the same issue with this account. it is active but I don't see capabilities.transfer:
curl https://api.stripe.com/v1/accounts/acct_1Kkrrn2fc3kdFEfU -u sk_test_0xaUfkmH1Ud1Lc1n9lBLQ2rh
"capabilities": {
"card_payments": "inactive",
"platform_payments": "inactive"
}
I can't see transfer
I thnik you sent me a worong message
@south laurel please message in the main channel. this is a thread for @south laurel issue
@south laurel can you share the request id from that call?
Nah I mean request id: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
req_bLFQnTV0ZFwrUI
Ah I think this is related to your api version. It's quite old:
2017-12-14
Try making the request again and setting the api version to the latest on the request: https://stripe.com/docs/libraries/set-version#setting-the-api-version
Latest is 2022-11-15
I made this request from a windows CMD I didn't use any platform (PHP, NodeJs..) so where we need to upgrade this
What windows cmd?
How exactly did you formulate the request?
If you don't explicitly pass the api version, it'll use your account's default which is the 2017 one
You can override that on a per-request basis by passing the stripe_version header as shown in the link I shared
ok thank you I will give it a try