Complete the sentence to explain what a payment webhook does.
A payment webhook is a way for a payment system to notify your app when a payment is [1].
A payment webhook sends a message when a payment is completed, so your app knows the payment went through.
Complete the sentence to describe what your app should do when it receives a payment webhook.
When your app receives a payment webhook, it should [1] the payment status and update the order accordingly.
Your app must verify the payment status to ensure the payment is valid before updating the order.
Fix the error in this statement about webhook confirmation.
Your app should send a [1] response to the webhook to confirm it received the payment notification.The app must send a confirmation response to acknowledge the webhook was received successfully.
Fill both blanks to complete the webhook handling process.
First, your app [1] the webhook data, then it [2] the order status based on payment success.
Your app validates the webhook data to ensure it's correct, then updates the order status accordingly.
Fill all three blanks to describe the full payment webhook confirmation flow.
The payment system sends a webhook to your app at [1]. Your app [2] the payment details and then sends a [3] response to confirm receipt.
The webhook is sent at checkout. Your app verifies the payment details and sends a confirmation response to acknowledge the webhook.