Questions? Feedback? powered by Olark live chat software

Integration Helper Getting Started

What is the integration helper?

The integration helper is a tool to assist integrations by providing the ability to perform actions on sandbox transactions that may normally only be performed by Escrow.com in the production environment

Currently the integration helper allows users to approve payments for transactions, as well as submitting/approving verification. Using the integration helper is very similar to using the API.

  • 1. Choose your favourite client from the samples below.
  • 2. Update the authentication field with your Escrow sandbox username and password.
  • 3. Create a transaction, call the agree endpoint for each unagreed party, and have the buyer fund the transaction as per the API documentation.
  • 4. Run the code snippet to approve a payment for your chosen transaction.

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.