#appdevs-ltd_code
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always 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/1341706633218101298
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ happy to help
what you're looking for is Stripe Issuing https://stripe.com/issuing not Stripe Connect
we want to issuesing virtualcard by using your api can provided step by setp api code example?
is this for you own business? or to provide to other businesses?
We just make ready scripts for our client will be used this. We making our script by Php laravel
so you want to offer your users the ability to create virtual cards for their users?
yes
in that case that's what you want to do https://docs.stripe.com/issuing/connect
I using this api but when i use this code i found this error
$stripe = new \Stripe\StripeClient('sk_test_51Qu8n9QKiqdwAQ6p16q9XCGHcYw6weacY5DkLkMxfQKDp53JwmMcN3oZ3RtRBYy2ha0lAXglfRbCpf5Pk4riEMOA00OBBw6r0H');
$result = $stripe->accounts->create([
'country' => 'US',
'business_type' => 'individual',
'email' => 'issues.rosen@example.com',
'controller' => [
'losses' => ['payments' => 'application'],
'fees' => ['payer' => 'application'],
'stripe_dashboard' => ['type' => 'none'],
'requirement_collection' => 'application',
],
'capabilities' => [
'card_payments' => ['requested' => true],
'transfers' => ['requested' => true],
'card_issuing' => ['requested' => true],
],
]);
Please review the responsibilities of collecting requirements for connected accounts at https://dashboard.stripe.com/settings/connect/platform-profile.
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
why the business_type is individual?
you don't need the card_payments capability though
please try removing these 2 params and try again
ok
$stripe = new \Stripe\StripeClient('sk_test_51Qu8n9QKiqdwAQ6p16q9XCGHcYw6weacY5DkLkMxfQKDp53JwmMcN3oZ3RtRBYy2ha0lAXglfRbCpf5Pk4riEMOA00OBBw6r0H');
$result = $stripe->accounts->create([
'country' => 'US',
'capabilities' => [
'transfers' => ['requested' => true],
'card_issuing' => ['requested' => true],
],
'controller' => [
'stripe_dashboard' => ['type' => 'none'],
'fees' => ['payer' => 'application'],
'losses' => ['payments' => 'application'],
'requirement_collection' => 'application',
],
]);
dd( $result);
now using this but still this problem
what's the request ID? https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site 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_oeIxeyxJ9fdgsK
can you please setup my account for createing connect and issues virtual card
@stuck meteor please wait while I check what's the issue with your request
problem come from this?
ok Sir
yes you need to contact https://support.stripe.com/?contact=true
Find help and support for Stripe. Our support site 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.
they will be able to help you
but my account status tell me that another thing
please do continue on Stripe Support, I won't be able to help you with this since it's more of an account setup issue not an integration one
yes
can I test all setup/testing like Live/production mode?
yes you can test Connect and Issuing in test mode or using sandboxes
if follow each step in this provided Doc link then my target will be fillup
https://docs.stripe.com/issuing/connect
yes and if you have any question while integrating feel free to come back and ask it here
ok