Blogs

  When worker completed his work and request for payment, you mark the applicable milestone items as received using Escrow API. This will start the inspection period. If client do not accept or reject the items before the end of the inspection period, Escrow.com will automatically assume that you accept them.     <?php $curl
Read More
  0 comments
Share with:
Share
  Marking a transaction and all of its items as completed is a simple patch request to the transaction endpoint with the action attribute set to ship.     <?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.escrow.com/2017-09-01/transaction/1944203/item/2472773', CURLOPT_RETURNTRANSFER => 1,
Read More
  0 comments
Share with:
Share
  Wire transfers do not require the user to visit Escrow.com to complete payment. Paying via wire transfer is completed in two steps.   i) Retrieving wire transfer details - The first step is retrieving the bank account details and payment reference details. This endpoint is used for returning the wire transfer details for funding
Read More
  0 comments
Share with:
Share
  To retrieve an Escrow.com landing page that will allow the user to enter their credit card details, you need to call below endpoint. After completion of payment, the user will be redirected back to the return_url, if provided.   <?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.escrow-sandbox.com/2017-09-
Read More
  0 comments
Share with:
Share
  To retrieve an Escrow.com landing page that will allow the user to pay via PayPal, you need to call below endpoint. After completion of payment, the user will be redirected back to the return_url, if provided.   <?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.escrow-sandbox.com/2017-09-01/transaction/19
Read More
  0 comments
Share with:
Share
  There are 3 payment methods available for funded an escrow transaction. Such methods include PayPal, Credit Card, and Wire Transfer.   <?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.escrow-sandbox.com/2017-09-01/transaction/1995345/payment_methods', CURLOPT_RETURNTRANSFER => 1, CURLOPT_USERPWD =>
Read More
  0 comments
Share with:
Share
In the previous blog https://bit.ly/2uQ5qDL, we had covered on Creating a milestone based transaction with broker commission using Escrow API. This blog is about Agreeing to a transaction using Escrow API. When the Escrow transaction is created by broker, the terms of the transaction are automatically agreed to by the broker. But, it is required th
Read More
  0 comments
Share with:
Share