PHP code example of funnylookinhat / affirm-php

1. Go to this page and download the library: Download funnylookinhat/affirm-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

funnylookinhat / affirm-php example snippets


{
  ""funnylookinhat/affirm-php": "0.2.*"
  }
}

$affirm_charge = Affirm\Resource::Get(array(
	'id' => "ASDF-HJKL",
));

$affirm_charge = Affirm\Resource::Create(array(
	'checkout_token' => "jibberjabber",
));

$affirm_charge = Affirm\Resource::Capture(array(
	'id' => "ASDF-HJKL",
	'order_id' => "ASDF-HJKL",
	'shipping_carrier' => "UPS",
	'shipping_confirmation' => "1Z9999999999999999",
));

$affirm_event = Affirm\Resource::Void(array(
	'id' => "ASDF-HJKL",
));

$affirm_event = Affirm\Resource::Refund(array(
	'id' => "ASDF-HJKL",
	'amount' => 12345,
));