Giter Site home page Giter Site logo

escrow-api's Introduction

Escrow-Api

  • Escrow.com API Helper
  • License: MIT license
  • These files are Not officially supported by Escrow.com.
  • Questions regarding this software should be directed to [email protected].

How to Install

Install the deboorn/escrow-api package

$ composer require deboorn/escrow-api

Example of Usage

$config = array(
    'username'     => '[email protected]',
    'seller_email' => '[email protected]',
    'password'     => 'mypassword',
    'partner_id'   => '1234',
);

$api = new \Escrow\Api($config['username'], $config['password'], 'https://stgsecureapi.escrow.com/api');



// Example of how to create a new transaction
$transaction = $api->createTransaction(array(
    "Title"                      => "Test General Merchandise Title",
    "Description"                => "Description",
    "TransactionType"            => "1",
    "Partner"                    => array(
        "PartnerId" => $config['partner_id'],
    ),
    "Buyer"                      => array(
        "Email"            => "[email protected]",
        "Initiator"        => "false",
        "CompanyChk"       => "false",
        "AutoAgree"        => "false",
        "AgreementChecked" => "false"
    ),
    "Seller"                     => array(
        "Email"            => $config['seller_email'],
        "Initiator"        => "true",
        "CompanyChk"       => "false",
        "AutoAgree"        => "false",
        "AgreementChecked" => "false"
    ),
    "LineItems"                  => array(array(
        "ItemName"    => "Line Item 1",
        "Description" => "Line Item 1 Description",
        "Quantity"    => "1",
        "Price"       => "2500",
        "Accept"      => "true",
        "SellComm"    => "100",
        "BuyComm"     => "50"
    )),
    "EscrowPayment"              => "0",
    "ShipmentFee"                => "25",
    "ShipmentPayment"            => "0",
    "InspectionLength"           => "6",
    "Currency"                   => "USD",
    "Fulfillment"                => "2",
    "CommissionType"             => "1",
    "InitiationDate"             => date('Y-m-d'),
    "TransactionLocked"          => "true",
    "PartnerTransID"             => uniqid(),
    "TermsLocked"                => "true",
    "AllowReject"                => "true",
    "BrkCommissionBuyerPortion"  => "0",
    "BrkCommissionSellerPortion" => "500",
    "BrokerCommissionPayee"      => "seller"
));

var_dump($transaction);

escrow-api's People

Contributors

deboorn avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.