#Randomuser2022
1 messages · Page 1 of 1 (latest)
hello
Hi there, what payment page do you refer to? do you have a link to that page?
i also check that only card is active, don't know why
we accepted payments with PaymentIntent in your custom integration
we don't use the stripe pre-build session
OK, what's the PaymentIntent ID
{
"id": "evt_3NAPu1EydrSRkIrF1vurty9I",
"object": "event",
"api_version": "2022-11-15",
"created": 1684727961,
"data": {
"object": {
"id": "pi_3NAPu1EydrSRkIrF1in9Meza",
"object": "payment_intent",
"amount": 6500,
"amount_capturable": 0,
"amount_details": {
"tip": {
}
},
"amount_received": 0,
"application": null,
"application_fee_amount": null,
"automatic_payment_methods": null,
"canceled_at": null,
"cancellation_reason": null,
"capture_method": "automatic",
"client_secret": "pi_3NAPu1EydrSRkIrF1in9Meza_secret_QuZfdcTZUuTcQIJS0LyBJRzwT",
"confirmation_method": "automatic",
"created": 1684727961,
"currency": "usd",
"customer": null,
"description": null,
"invoice": null,
"last_payment_error": null,
"latest_charge": null,
"livemode": false,
"metadata": {
"sfid": "a237h000000ZXBhAAO"
},
"next_action": null,
"on_behalf_of": null,
"payment_method": null,
"payment_method_options": {
"card": {
"installments": null,
"mandate_options": null,
"network": null,
"request_three_d_secure": "automatic"
}
},
"payment_method_types": [
"card"
],
"processing": null,
"receipt_email": null,
"review": null,
"setup_future_usage": null,
"shipping": null,
"source": null,
"statement_descriptor": null,
"statement_descriptor_suffix": null,
"status": "requires_payment_method",
"transfer_data": null,
"transfer_group": null
}
},
"livemode": false,
"pending_webhooks": 1,
"request": {
"id": "req_ekNjPwLtzYYXnJ",
"idempotency_key": "80fe4e2b-44e7-4176-85d5-bf316959fa78"
},
"type": "payment_intent.created"
}
this? "id": "pi_3NAPu1EydrSRkIrF1in9Meza"
OK, https://stripe.com/docs/api/payment_intents/create#create_payment_intent-automatic_payment_methods-enabled you need to enable automatic_payment_methods so that Stripe can automatically include eligibal payment method options for the paymentIntent
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
for Affirm? Google pay& Apple pay doesn't require that right?
You need to verify your domain for Apple Pay. Details in https://stripe.com/docs/stripe-js/elements/payment-request-button#verifying-your-domain-with-apple-pay
Collect payment details before creating an Intent🥹