#Iyyappan-afterpay-connect-apm
1 messages · Page 1 of 1 (latest)
Hello, can you show me your code for creating a payment intent here?
var stripe_data = {
amount: 10,
application_fee_amount: 2,
currency: 'CAD',
description:'Experience buy services.',
automatic_payment_methods: {enabled : true},
shipping: {
name: 'joe,
address: {
line1: 'Communiti Street',
city: 'Toronto',
state: 'CA',
country: 'CA',
postal_code: 'M4V'
}
}
};
stripe.paymentIntents.create(stripe_data).then(function(payment_intent){
callback(payment_intent);
})
The shipping address line1 any verification?
response:
"payment_method_types": [
"card"
],
Payment Intent Id: pi_3MAaaACu4MZEkVd216sHJzGF
HI there 👋 I'm jumping in as my teammate needs to step away soon. Please bear with me for a couple minutes while I pull up that Payment Intent and take a look at what could be happening.
It looks like you're using Express Connected Accounts with Direct Charges, I wanted to point out that this isn't a recommended integration path (we recommend using Destination Charges with these types of accounts), so I'm not entirely certain whether this is an integration issue or an issue with an account missing necessary verification information.
If you go to the page in the dashboard as your Platform account where you manage the types of payment methods that your Connected Accounts are allowed to use, and expand the section for Afterpay/Clearpay, you'll see that there is 1 account that is mentioned to be missing information. Can you download the account list from that section and confirm whether the account listed there is the same account that is not seeing Afterpay presented as an acceptable type of payment method?
https://dashboard.stripe.com/settings/payment_methods/connected_accounts
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Iyyappan-afterpay-connect-apm
Thanks let me check