Questions? Feedback? powered by Olark live chat software

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.

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.