#peter_40675
1 messages · Page 1 of 1 (latest)
hi, could you explain in more detail what your end goal is? When you say 'create an account' are you referring to using Connect(and then, Standard/Express or Custom accounts), or something else?
stripe.accounts.create(accountObject,function(err,account){ ....
i want to UK country but its not supported
Country UK not supported (you should use the 2-letter country code, e.g. US).
it's GB, not UK.
https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes#UNI2
code: 'postal_code_invalid', -- showing error
perhaps you passed a postal code that is invalid for the UK?
if you post the request ID req_xxx I could say more. (https://support.stripe.com/questions/finding-the-id-for-an-api-request)
rawType: 'invalid_request_error',
code: 'routing_number_invalid',
doc_url: 'https://stripe.com/docs/error-codes/routing-number-invalid',
for GB
postal code working but routing number invalid
i pass- 110000000 // routing number
if you post the request ID req_xxx I could say more. (https://support.stripe.com/questions/finding-the-id-for-an-api-request)
per https://stripe.com/docs/connect/testing#payouts anyway 110000000 is not a valid routing number for the UK
thanks. Then yeah, you need the correct testing numbers from the doc above
yes just moment
when i create payment intent
amount: "2000",
currency: 'gbp',
application_fee_amount : '1000',
transfer_data : {
destination : "acct_1Nk14YGaK8unpaZk",
},
its work
but not payout to connected account
not sure what you mean by "not payout"
I wouldn't expect there to be a payout.
that API call is just creating a PaymentIntent; some of the money will be transferred to the connected account; and a few days later the connected account's balance will be paid out to their bank account,
okay.. thanks
great work
But how destination account knows 1000 payment intented ?
I don't think I follow unfortuantely, could you re-phrase the question?
means when i create payment intent with applied destination,
then how to destination account knows intent creted or not?
like that
its 2000 while creating intent but what about 1000 for destination account?
if you call https://stripe.com/docs/api/charges/list + https://stripe.com/docs/connect/authentication#stripe-account-header you can see 'incoming payments' on the connected account, like the Transfer it recieved.
if you look at your Dashboard in the Connect section and look at the specific account, on its page you can also look at its incoming payments there.
not sure if that's what you mean.
yes right what i want to say about
there is no payment intents showing like uncaptured status..! abov img
did you confirm the PaymentIntent?
yes
just creating the PaymentIntent doesn't do anything , you have to actually process a payment with it(by e.g. using the PaymentIntent on the frontend with your Elements page_
well what's the pi_xxx PaymentIntent ID then so I can look?
I think you mean "look into it, please" 🙂
Have you see any diffrance?