Which of the following best describes the purpose of Stripe's secret API key?
Think about which key should never be shared publicly to keep your Stripe account safe.
The secret API key authenticates your server's requests to Stripe. It must be kept private to prevent unauthorized access.
What is the correct sequence of steps when a customer makes a payment using Stripe Checkout?
Consider the natural order from customer input to confirmation.
The customer first enters payment details, Stripe processes the payment, the server confirms it, then the customer gets confirmation.
Which of the following mistakes will cause a Stripe webhook to fail receiving event notifications?
Think about what happens if the webhook cannot verify the event's authenticity.
If the webhook signing secret is wrong, Stripe's event verification fails and the webhook rejects events.
Which payment method in Stripe allows customers to save their card details for future purchases securely?
Consider which method supports storing customer payment details securely.
Payment Intents with Customer objects allow saving card details securely for future use.
You notice that some payments are failing with the error 'card_declined' even though the card details are correct. What is the most likely reason?
Think about what 'card_declined' means from the bank's perspective.
'card_declined' means the bank refused the transaction, often due to insufficient funds or security concerns.