Integration Helper Approving Payments
Note
This endpoint is not for use in production. It is available only in the sandbox environment. We have included it to help you test your integration. It allows you to perform the back office functionality described on this page.
Note
The payment will be secured and approved twenty minutes after the payment has been marked as paid.
Approving wire payments
Approving a wire payment is as simple as specifying a payment method and specifying an amount to be paid.
- cURL
- Python
- Ruby
- PHP
- C#
1 2 3 4 5 6 7 8 9
curl "https://integrationhelper.escrow-sandbox.com/v1/transaction/1029454/payments_in" \ -X POST \ -u "email-address:your-password" \ -H "Content-Type: application/json" \ -d ' { "method": "wire_transfer", "amount": "406.00" }'
If your request was successful, the API should return a 200 status code.
Approving wire payments via the Partner Dashboard
When testing transactions in our Sandbox environment, you can approve the corresponding payment via the Partner Dashboard. On the transaction page, an 'Approve Payment' button will be available if you have cleared all payment approval blockers. If the payment is approved successfully, the page will reload. Otherwise, an error message will be displayed.
