#jatinpatel0708

1 messages · Page 1 of 1 (latest)

serene craterBOT
humble basin
#

Hi,
Can you share more details please? how are you accepting payments/showing Apple Pay ?

floral stag
#

First we are connect organization stripe account in the main Stripe account then after we are creating a payment in that connected account

#

But Apple pay button is not working for the conneted account

humble basin
#

How are you integrating Stripe, what Stripe product are you using ? Checkout /Elements?

#

can you share an example

floral stag
#

Element:

here us my code
var stripe = Stripe("{{ config('app.stripe.key') }}", {
apiVersion: "2022-08-01",
stripeAccount:'acct_1N6sXl2eVOV9beAw',
});
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});

        var posting = [];
        var result = "";
        var paymentRequest = stripe.paymentRequest({
            country: 'US',
            currency: currencyVal,
            total: {
                label: 'GivingX Custom Fundraiser Software',
                amount: parseInt( Math.round(stripe_amount) ),
            },
            requestPayerName: true,
            requestPayerEmail: true,
        });
        var elements = stripe.elements();
        var prButton = elements.create('paymentRequestButton', {
            paymentRequest: paymentRequest,
        });
        
        // Check the availability of the Payment Request API first.
        paymentRequest.canMakePayment().then(function (result) {
            if (result) {
                prButton.mount('#payment-request-button');
            } else {
                document.getElementById('payment-request-button').style.display = 'none';
            }
        });
floral stag
#

Yes, I have verified the domain

humble basin
#

Can you share a link to your checkout page ?

humble basin
#

Can you share a Connected AccountId?

floral stag
#

Connected Account id: acct_1N6sXl2eVOV9beAw

humble basin
#

Thanks. let me check..

floral stag
#

sure

humble basin
#

for account acct_1N6sXl2eVOV9beAw I can see only www.givingx.com configured in test mode for Apple Pay

floral stag
#

could you please let me know, which type of Account I need to connect to the Stripe "Standard", "Custom" or express

#

The main stripe account in collect only platform fee and all other transactions need to create in the connected account

#

okay, i will check it again

#

could you please let me know, which type of Account I need to connect to the Stripe "Standard", "Custom" or express
The main stripe account in collects only the platform fee and all other transactions need to create in the connected account

humble basin
#

could you please let me know, which type of Account I need to connect to the Stripe "Standard", "Custom" or express
I don't understand your question. You can create one of these Connected Stripe Account types to your platform(main) Account

floral stag
#

Thanks

humble basin
humble basin
serene craterBOT
full lance
#

Hi! I'm taking over from my colleague. Please, let me know if you have any other questions.

floral stag
#

okay, I am testing it and let you know if I have any question

floral stag
#

here live account connected id: acct_1MuJnsGdhkL3rLC9

#

Apple pay button is not showing on this page

full lance
#

What browser are you using?
I am able to see GPay in Chrome

floral stag
#

safari

#

Apple pay button is not showing

#

there?

full lance
#

Sorry, it's busy today, please give me a moment.

floral stag
#

okay, take your time

full lance
#

I am able to see Apple Pay button in Safari. Are you sure you have your wallets set up correctly in the browser?

floral stag
#

Yes, I have added all the requirements

#

Thanks

#

it's workig now

full lance
#

Happy to help. Please, let me know if you have any other questions.