#jatinpatel0708
1 messages · Page 1 of 1 (latest)
Hi,
Can you share more details please? how are you accepting payments/showing Apple Pay ?
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
How are you integrating Stripe, what Stripe product are you using ? Checkout /Elements?
can you share an example
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';
}
});
Yes, I have verified the domain
Can you share a link to your checkout page ?
Can you share a Connected AccountId?
Connected Account id: acct_1N6sXl2eVOV9beAw
Thanks. let me check..
sure
[Warning] Either you do not have a card saved to your Wallet or the current domain (staging.admin.givingxcelerator.com) or stripeAccount parameter (acct_1N6sXl2eVOV9beAw) is not registered for Apple Pay. Visit https://dashboard.stripe.com/account/apple_pay to register this domain.
When loading your checkout page, I see this warning
for account acct_1N6sXl2eVOV9beAw I can see only www.givingx.com configured in test mode for Apple Pay
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
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
For better understanding of these accounts types, you can check these:
https://stripe.com/docs/connect/accounts
https://stripe.com/docs/connect/charges
Thanks
Here there is some example of use cases, check them:
https://stripe.com/docs/connect/charges#types
Welcome!
Hi! I'm taking over from my colleague. Please, let me know if you have any other questions.
okay, I am testing it and let you know if I have any question
https://www.givingx.com/org/forms/data/embedded/62dbbee30823f6d17c014992?lang=en
here is my form checkout page link
here live account connected id: acct_1MuJnsGdhkL3rLC9
Apple pay button is not showing on this page
What browser are you using?
I am able to see GPay in Chrome
Sorry, it's busy today, please give me a moment.
okay, take your time
I am able to see Apple Pay button in Safari. Are you sure you have your wallets set up correctly in the browser?
You will need to make sure you have these requirements set: https://stripe.com/docs/stripe-js/elements/payment-request-button?client=html#html-js-prerequisites
Happy to help. Please, let me know if you have any other questions.