Manual Review
This guide will help you understand how to enable manual transaction review for withdrawals to support your organization’s compliance workflows. As a prerequisite, it is assumed that you have completed an integration in sandbox and are ready to make updates to support manual review.
Overview
In order to enable manual review for withdrawals, you will need to:
Disable automatic approvals
By default, payment intents are automatically approved and posted to the network for processing during the payment session.
You can disable automatic approvals by setting the approval_mode
to manual
when creating the payment intent.
Automatic approvals can only be disabled for cash_out
intents - all cash_in
intents are immediately posted to the network upon approval.
example create-intent request body
When Push approves a payment with approval_mode
set to manual
, the status of the payment intent at the conclusion of the payment session will be pending
instead of approved
.
Your backend will receive the intent.approved
webhook, but the payment will not be posted to the network until you manually approve it.
example webhook payload
Review payment details
Retrieve information about the payment using the get-intent endpoint to support your review process.
Details about the account receiving the payment are stored on the payment_credential
field.
example intent response body
Approve or reject the payment
Call the API to effect your team’s decision on the payment.
- To approve the payment, make a request to the approve-intent endpoint
- To reject the payment, make a request to the cancel-intent endpoint