#harishkumarshopism_api

1 messages ยท Page 1 of 1 (latest)

tender compassBOT
royal matrixBOT
#

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

tender compassBOT
#

๐Ÿ‘‹ Welcome to your new thread!

โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).

โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can start a new thread if you have another question.

๐Ÿ”— This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1254763764742492211

๐Ÿ“ Have more to share? Add details, code, screenshots, videos, etc. below.

restive willow
untold turtle
#

sure acct_1OgNVZSGOmkSqGMv this is the ID

restive willow
#

No, the ID of the API request that returns the error

untold turtle
#

how can i create payout. i already try to create an account. that account was created but status shown restricted. i follow as per the document. but not working

misty sinew
#

what document are you following exactly? Because destination:accountId is not how this works. You have to onboard the connected account first and collect their bank details, and then you can do payouts later.

untold turtle
#

i am using test mode. is it possible to create payout in test mode ?

#

i create and onboard account but not working

#

payout

misty sinew
untold turtle
#

wait i will try again and get back to you

#

how can i onboard this account ?

misty sinew
untold turtle
#

let me check

#

what is the code i enter here

misty sinew
#

000-000 or the code you recieved on your phone if you used a real number.

untold turtle
#

i didn't used real number. i am using +1 800 555 0199 this number but 000-000 not working

misty sinew
#

then you need to use a real phone number I would say. How did you create this account? What API call? what guide are you following?

untold turtle
dusty grove
#

Hi there ๐Ÿ‘‹ jumping in as my teammate needs to step away soon. I'd recommend rolling that secret key now that it's been shared in a public forum.

untold turtle
#

okay, please guide me to create an account and onboarding account.then i make a payout

dusty grove
#

What type of Connected Account are you trying to create?

untold turtle
#

express

dusty grove
#

Ah, actually, looks like you're using the controller hash instead? Is that correct?

untold turtle
#

okay then what can i do. please give me what the exact api and payload.

dusty grove
#

The exact payload you need to send depends on the structure of the account that you want to create. If you aren't sure of that yet, you should start here to view all the options and confirm which ones can be used together:
https://docs.stripe.com/connect/design-an-integration

Once you know that structure, this guide walks through the rest. Creating an account, creating an Account Link to let them onboard, how to process a payment.
https://docs.stripe.com/connect/collect-then-transfer-guide?platform=web
One thing to note there, I'm seeing the payment flow there uses Destination Charges. That's the charge structure I would recommend if you're using an express-like account, but I'd recommend double checking that's what you see when you get to that section and to use a different guide if you want to use Direct Charges instead.

untold turtle
#

let me check

untold turtle
#

$ curl -X POST https://api.stripe.com/v1/payouts \

-u '*******************':
-d amount=1000
-d currency=eur
-d destination=acct_1PVCzkQSmNfNuEp1
-d description="Payout description"
{
"error": {
"code": "resource_missing",
"doc_url": "https://stripe.com/docs/error-codes/resource-missing",
"message": "No such external account: 'acct_1PVCzkQSmNfNuEp1'",
"param": "destination",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_7Fk6mB0cGP0cNv?t=1719236575",
"type": "invalid_request_error"
}
}

#

resource missing means what can i do

dusty grove
#

It means you have structured your code wrong. You don't specify a Connected Account as the destination parameter when creating a Payout. What are you trying to do here?

dusty grove
#

You don't create Payouts from your Platform account to your Connected Accounts, that's not how the Connect flows work. The only thing close to that is if you're using the Separate Charges and Transfers pattern to manually create Transfers to move funds from your Platform Account to Connected Accounts.