forked from LiveCarta/PayPal-PHP-SDK
Updated User Agent & More Samples for Billing Plans
- Fixed versioning in User Agent. - Updated Billing Plan sample to update Payment definitions - Docs & Tests
This commit is contained in:
@@ -81,6 +81,6 @@ class PatchRequest extends PPModel
|
|||||||
foreach ($this->getPatches() as $patch) {
|
foreach ($this->getPatches() as $patch) {
|
||||||
$json[] = $patch->toArray();
|
$json[] = $patch->toArray();
|
||||||
}
|
}
|
||||||
return json_encode($json, $options);
|
return str_replace('\\/', '/', json_encode($json, $options));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -184,7 +184,7 @@ class OAuthTokenCredential extends ResourceModel
|
|||||||
{
|
{
|
||||||
$base64ClientID = base64_encode($clientId . ":" . $clientSecret);
|
$base64ClientID = base64_encode($clientId . ":" . $clientSecret);
|
||||||
$headers = array(
|
$headers = array(
|
||||||
"User-Agent" => PPUserAgent::getValue(RestHandler::$sdkName, RestHandler::$sdkVersion),
|
"User-Agent" => PPUserAgent::getValue(PPConstants::SDK_NAME, PPConstants::SDK_VERSION),
|
||||||
"Authorization" => "Basic " . $base64ClientID,
|
"Authorization" => "Basic " . $base64ClientID,
|
||||||
"Accept" => "*/*"
|
"Accept" => "*/*"
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ class PPConstants
|
|||||||
{
|
{
|
||||||
|
|
||||||
const SDK_NAME = 'PayPal-PHP-SDK';
|
const SDK_NAME = 'PayPal-PHP-SDK';
|
||||||
const SDK_VERSION = '0.14.0';
|
const SDK_VERSION = '0.14.1';
|
||||||
|
|
||||||
const REST_SANDBOX_ENDPOINT = "https://api.sandbox.paypal.com/";
|
const REST_SANDBOX_ENDPOINT = "https://api.sandbox.paypal.com/";
|
||||||
const OPENID_REDIRECT_SANDBOX_URL = "https://www.sandbox.paypal.com/webapps/auth/protocol/openidconnect";
|
const OPENID_REDIRECT_SANDBOX_URL = "https://www.sandbox.paypal.com/webapps/auth/protocol/openidconnect";
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ use PayPal\Auth\OAuthTokenCredential;
|
|||||||
use PayPal\Common\PPUserAgent;
|
use PayPal\Common\PPUserAgent;
|
||||||
use PayPal\Core\PPConstants;
|
use PayPal\Core\PPConstants;
|
||||||
use PayPal\Core\PPCredentialManager;
|
use PayPal\Core\PPCredentialManager;
|
||||||
|
use PayPal\Core\PPHttpConfig;
|
||||||
use PayPal\Exception\PPConfigurationException;
|
use PayPal\Exception\PPConfigurationException;
|
||||||
use PayPal\Exception\PPInvalidCredentialException;
|
use PayPal\Exception\PPInvalidCredentialException;
|
||||||
use PayPal\Exception\PPMissingCredentialException;
|
use PayPal\Exception\PPMissingCredentialException;
|
||||||
@@ -26,20 +27,6 @@ class RestHandler implements IPPHandler
|
|||||||
*/
|
*/
|
||||||
private $apiContext;
|
private $apiContext;
|
||||||
|
|
||||||
/**
|
|
||||||
* Public Variable
|
|
||||||
*
|
|
||||||
* @var string $sdkName
|
|
||||||
*/
|
|
||||||
public static $sdkName = "rest-sdk-php";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Public Variable
|
|
||||||
*
|
|
||||||
* @var string $sdkVersion
|
|
||||||
*/
|
|
||||||
public static $sdkVersion = "0.13.2";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct
|
* Construct
|
||||||
*
|
*
|
||||||
@@ -51,7 +38,7 @@ class RestHandler implements IPPHandler
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param \Paypal\Core\PPHttpConfig $httpConfig
|
* @param PPHttpConfig $httpConfig
|
||||||
* @param string $request
|
* @param string $request
|
||||||
* @param mixed $options
|
* @param mixed $options
|
||||||
* @return mixed|void
|
* @return mixed|void
|
||||||
@@ -87,7 +74,7 @@ class RestHandler implements IPPHandler
|
|||||||
);
|
);
|
||||||
|
|
||||||
if (!array_key_exists("User-Agent", $httpConfig->getHeaders())) {
|
if (!array_key_exists("User-Agent", $httpConfig->getHeaders())) {
|
||||||
$httpConfig->addHeader("User-Agent", PPUserAgent::getValue(self::$sdkName, self::$sdkVersion));
|
$httpConfig->addHeader("User-Agent", PPUserAgent::getValue(PPConstants::SDK_NAME, PPConstants::SDK_VERSION));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_null($credential) && $credential instanceof OAuthTokenCredential && is_null($httpConfig->getHeader('Authorization'))) {
|
if (!is_null($credential) && $credential instanceof OAuthTokenCredential && is_null($httpConfig->getHeader('Authorization'))) {
|
||||||
|
|||||||
7
sample/.htaccess
Normal file
7
sample/.htaccess
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<IfModule mod_php5.c>
|
||||||
|
php_value display_errors On
|
||||||
|
php_flag magic_quotes 1
|
||||||
|
php_flag magic_quotes_gpc 1
|
||||||
|
php_value mbstring.http_input auto
|
||||||
|
php_value date.timezone America/Los_Angeles
|
||||||
|
</IfModule>
|
||||||
@@ -67,7 +67,7 @@ $agreement->setPlan($plan);
|
|||||||
// Add Payer
|
// Add Payer
|
||||||
$payer = new Payer();
|
$payer = new Payer();
|
||||||
$payer->setPaymentMethod('credit_card')
|
$payer->setPaymentMethod('credit_card')
|
||||||
->setPayerInfo(new PayerInfo(['email' => 'jaypatel512-facilitator@hotmail.com']));
|
->setPayerInfo(new PayerInfo(array('email' => 'jaypatel512-facilitator@hotmail.com')));
|
||||||
|
|
||||||
// Add Credit Card to Funding Instruments
|
// Add Credit Card to Funding Instruments
|
||||||
$creditCard = new CreditCard();
|
$creditCard = new CreditCard();
|
||||||
|
|||||||
@@ -33,12 +33,12 @@ $paymentDefinition->setName('Regular Payments')
|
|||||||
->setFrequency('Month')
|
->setFrequency('Month')
|
||||||
->setFrequencyInterval("2")
|
->setFrequencyInterval("2")
|
||||||
->setCycles("12")
|
->setCycles("12")
|
||||||
->setAmount(new Currency(['value' => 100, 'currency' => 'USD']));
|
->setAmount(new Currency(array('value' => 100, 'currency' => 'USD')));
|
||||||
|
|
||||||
// Charge Models
|
// Charge Models
|
||||||
$chargeModel = new ChargeModel();
|
$chargeModel = new ChargeModel();
|
||||||
$chargeModel->setType('SHIPPING')
|
$chargeModel->setType('SHIPPING')
|
||||||
->setAmount(new Currency(['value' => 10, 'currency' => 'USD']));
|
->setAmount(new Currency(array('value' => 10, 'currency' => 'USD')));
|
||||||
|
|
||||||
$paymentDefinition->setChargeModels(array($chargeModel));
|
$paymentDefinition->setChargeModels(array($chargeModel));
|
||||||
|
|
||||||
@@ -49,7 +49,7 @@ $merchantPreferences->setReturnUrl("$baseUrl/ExecuteAgreement.php?success=true")
|
|||||||
->setAutoBillAmount("yes")
|
->setAutoBillAmount("yes")
|
||||||
->setInitialFailAmountAction("CONTINUE")
|
->setInitialFailAmountAction("CONTINUE")
|
||||||
->setMaxFailAttempts("0")
|
->setMaxFailAttempts("0")
|
||||||
->setSetupFee(new Currency(['value' => 1, 'currency' => 'USD']));
|
->setSetupFee(new Currency(array('value' => 1, 'currency' => 'USD')));
|
||||||
|
|
||||||
|
|
||||||
$plan->setPaymentDefinitions(array($paymentDefinition));
|
$plan->setPaymentDefinitions(array($paymentDefinition));
|
||||||
|
|||||||
51
sample/billing/UpdatePlanPaymentDefinitions.php
Normal file
51
sample/billing/UpdatePlanPaymentDefinitions.php
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// # Update a plan
|
||||||
|
//
|
||||||
|
// This sample code demonstrate how you can update a billing plan, as documented here at:
|
||||||
|
// https://developer.paypal.com/webapps/developer/docs/api/#update-a-plan
|
||||||
|
// API used: /v1/payments/billing-plans/<Plan-Id>
|
||||||
|
|
||||||
|
// ### Changing Plan Amount
|
||||||
|
// This example demonstrate how you could change the plan amount
|
||||||
|
|
||||||
|
// Retrieving the Plan object from Create Plan Sample to demonstrate the List
|
||||||
|
/** @var Plan $createdPlan */
|
||||||
|
$createdPlan = require 'CreatePlan.php';
|
||||||
|
|
||||||
|
use PayPal\Api\Plan;
|
||||||
|
use PayPal\Api\PatchRequest;
|
||||||
|
use PayPal\Api\Patch;
|
||||||
|
|
||||||
|
try {
|
||||||
|
$patch = new Patch();
|
||||||
|
|
||||||
|
$paymentDefinitions = $createdPlan->getPaymentDefinitions();
|
||||||
|
$paymentDefinitionId = $paymentDefinitions[0]->getId();
|
||||||
|
$patch->setOp('replace')
|
||||||
|
->setPath('/payment-definitions/' . $paymentDefinitionId)
|
||||||
|
->setValue(json_decode(
|
||||||
|
'{
|
||||||
|
"name": "Updated Payment Definition",
|
||||||
|
"frequency": "Day",
|
||||||
|
"amount": {
|
||||||
|
"currency": "USD",
|
||||||
|
"value": "50"
|
||||||
|
}
|
||||||
|
}'
|
||||||
|
));
|
||||||
|
$patchRequest = new PatchRequest();
|
||||||
|
$patchRequest->addPatch($patch);
|
||||||
|
|
||||||
|
$createdPlan->update($patchRequest, $apiContext);
|
||||||
|
|
||||||
|
$plan = Plan::get($createdPlan->getId(), $apiContext);
|
||||||
|
|
||||||
|
} catch (Exception $ex) {
|
||||||
|
ResultPrinter::printError("Updated the Plan Payment Definition", "Plan", null, $patchRequest, $ex);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
ResultPrinter::printResult("Updated the Plan Payment Definition", "Plan", $plan->getId(), $patchRequest, $plan);
|
||||||
|
|
||||||
|
return $plan;
|
||||||
@@ -30,10 +30,26 @@ class ResultPrinter
|
|||||||
* @param string $objectId
|
* @param string $objectId
|
||||||
* @param mixed $request
|
* @param mixed $request
|
||||||
* @param mixed $response
|
* @param mixed $response
|
||||||
* @param string $error
|
* @param string $errorMessage
|
||||||
*/
|
*/
|
||||||
public static function printOutput($title, $objectName, $objectId = null, $request = null, $response = null, $errorMessage = null)
|
public static function printOutput($title, $objectName, $objectId = null, $request = null, $response = null, $errorMessage = null)
|
||||||
{
|
{
|
||||||
|
if (PHP_SAPI == 'cli') {
|
||||||
|
self::$printResultCounter++;
|
||||||
|
printf("\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n");
|
||||||
|
printf("(%d) %s", self::$printResultCounter, strtoupper($title));
|
||||||
|
printf("\n-------------------------------------------------------------\n\n");
|
||||||
|
if ($objectId) {
|
||||||
|
printf("Object with ID: %s \n", $objectId);
|
||||||
|
}
|
||||||
|
printf("-------------------------------------------------------------\n");
|
||||||
|
printf("\tREQUEST:\n");
|
||||||
|
self::printConsoleObject($request);
|
||||||
|
printf("\n\n\tRESPONSE:\n");
|
||||||
|
self::printConsoleObject($response, $errorMessage);
|
||||||
|
printf("\n-------------------------------------------------------------\n\n");
|
||||||
|
} else {
|
||||||
|
|
||||||
if (self::$printResultCounter == 0) {
|
if (self::$printResultCounter == 0) {
|
||||||
include "header.html";
|
include "header.html";
|
||||||
echo '<br />
|
echo '<br />
|
||||||
@@ -76,7 +92,7 @@ class ResultPrinter
|
|||||||
echo '</div></div></div></div>
|
echo '</div></div></div></div>
|
||||||
</div>
|
</div>
|
||||||
</div>';
|
</div>';
|
||||||
|
}
|
||||||
flush();
|
flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -112,6 +128,27 @@ class ResultPrinter
|
|||||||
self::printOutput($title, $objectName, $objectId, $request, $data, $exception->getMessage());
|
self::printOutput($title, $objectName, $objectId, $request, $data, $exception->getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected static function printConsoleObject($object, $error = null)
|
||||||
|
{
|
||||||
|
if ($error) {
|
||||||
|
echo 'ERROR:'. $error;
|
||||||
|
}
|
||||||
|
if ($object) {
|
||||||
|
if (is_a($object, 'PayPal\Common\PPModel')) {
|
||||||
|
/** @var $object \PayPal\Common\PPModel */
|
||||||
|
echo $object->toJSON(128);
|
||||||
|
} elseif (is_string($object) && \PayPal\Validation\JsonValidator::validate($object, true)) {
|
||||||
|
echo str_replace('\\/', '/', json_encode(json_decode($object), 128));
|
||||||
|
} elseif (is_string($object)) {
|
||||||
|
echo $object;
|
||||||
|
} else {
|
||||||
|
print_r($object);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
echo "No Data";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected static function printObject($object, $error = null)
|
protected static function printObject($object, $error = null)
|
||||||
{
|
{
|
||||||
if ($error) {
|
if ($error) {
|
||||||
@@ -145,7 +182,12 @@ class ResultPrinter
|
|||||||
*/
|
*/
|
||||||
function getBaseUrl()
|
function getBaseUrl()
|
||||||
{
|
{
|
||||||
|
if (PHP_SAPI == 'cli') {
|
||||||
|
$trace=debug_backtrace();
|
||||||
|
$relativePath = substr(dirname($trace[0]['file']), strlen(dirname(dirname(__FILE__))));
|
||||||
|
echo "Warning: This sample may require a server to handle return URL. Cannot execute in command line. Defaulting URL to http://localhost$relativePath \n";
|
||||||
|
return "http://localhost" . $relativePath;
|
||||||
|
}
|
||||||
$protocol = 'http';
|
$protocol = 'http';
|
||||||
if ($_SERVER['SERVER_PORT'] == 443 || (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on')) {
|
if ($_SERVER['SERVER_PORT'] == 443 || (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on')) {
|
||||||
$protocol .= 's';
|
$protocol .= 's';
|
||||||
|
|||||||
@@ -390,6 +390,46 @@ f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
}, {
|
||||||
|
"type": "file",
|
||||||
|
"data": {
|
||||||
|
"language": {
|
||||||
|
"nameMatchers": [{}, ".fbp"],
|
||||||
|
"pygmentsLexer": "php",
|
||||||
|
"singleLineComment": ["//"],
|
||||||
|
"ignorePrefix": "}",
|
||||||
|
"foldPrefix": "^",
|
||||||
|
"name": "PHP"
|
||||||
|
},
|
||||||
|
"sourcePath": "/Users/japatel/Documents/workspace/Server-SDK/rest-api-sdk-php/sample/billing/UpdatePlanPaymentDefinitions.php",
|
||||||
|
"projectPath": "billing/UpdatePlanPaymentDefinitions.php",
|
||||||
|
"targetPath": "billing/UpdatePlanPaymentDefinitions",
|
||||||
|
"pageTitle": "billing/UpdatePlanPaymentDefinitions",
|
||||||
|
"title": "UpdatePlanPaymentDefinitions"
|
||||||
|
},
|
||||||
|
"depth": 2,
|
||||||
|
"outline": [
|
||||||
|
{
|
||||||
|
"type": "heading",
|
||||||
|
"data": {
|
||||||
|
"level": 1,
|
||||||
|
"title": "Update a plan",
|
||||||
|
"slug": "update-a-plan"
|
||||||
|
},
|
||||||
|
"depth": 1,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"type": "heading",
|
||||||
|
"data": {
|
||||||
|
"level": 3,
|
||||||
|
"title": "Changing Plan Amount",
|
||||||
|
"slug": "changing-plan-amount"
|
||||||
|
},
|
||||||
|
"depth": 3
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}, {
|
}, {
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ Please note that the plan Id should be only set in this case.</p></div></div><di
|
|||||||
<span class="hljs-variable">$plan</span>->setId(<span class="hljs-variable">$createdPlan</span>->getId());
|
<span class="hljs-variable">$plan</span>->setId(<span class="hljs-variable">$createdPlan</span>->getId());
|
||||||
<span class="hljs-variable">$agreement</span>->setPlan(<span class="hljs-variable">$plan</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><p>Add Payer</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$payer</span> = <span class="hljs-keyword">new</span> Payer();
|
<span class="hljs-variable">$agreement</span>->setPlan(<span class="hljs-variable">$plan</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><p>Add Payer</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$payer</span> = <span class="hljs-keyword">new</span> Payer();
|
||||||
<span class="hljs-variable">$payer</span>->setPaymentMethod(<span class="hljs-string">'credit_card'</span>)
|
<span class="hljs-variable">$payer</span>->setPaymentMethod(<span class="hljs-string">'credit_card'</span>)
|
||||||
->setPayerInfo(<span class="hljs-keyword">new</span> PayerInfo([<span class="hljs-string">'email'</span> => <span class="hljs-string">'jaypatel512-facilitator@hotmail.com'</span>]));</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><p>Add Credit Card to Funding Instruments</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$creditCard</span> = <span class="hljs-keyword">new</span> CreditCard();
|
->setPayerInfo(<span class="hljs-keyword">new</span> PayerInfo(<span class="hljs-keyword">array</span>(<span class="hljs-string">'email'</span> => <span class="hljs-string">'jaypatel512-facilitator@hotmail.com'</span>)));</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><p>Add Credit Card to Funding Instruments</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$creditCard</span> = <span class="hljs-keyword">new</span> CreditCard();
|
||||||
<span class="hljs-variable">$creditCard</span>->setType(<span class="hljs-string">'visa'</span>)
|
<span class="hljs-variable">$creditCard</span>->setType(<span class="hljs-string">'visa'</span>)
|
||||||
->setNumber(<span class="hljs-string">'4417119669820331'</span>)
|
->setNumber(<span class="hljs-string">'4417119669820331'</span>)
|
||||||
->setExpireMonth(<span class="hljs-string">'12'</span>)
|
->setExpireMonth(<span class="hljs-string">'12'</span>)
|
||||||
|
|||||||
@@ -16,9 +16,9 @@ You should be able to see the acceptable values in the comments.</p></div></div>
|
|||||||
->setFrequency(<span class="hljs-string">'Month'</span>)
|
->setFrequency(<span class="hljs-string">'Month'</span>)
|
||||||
->setFrequencyInterval(<span class="hljs-string">"2"</span>)
|
->setFrequencyInterval(<span class="hljs-string">"2"</span>)
|
||||||
->setCycles(<span class="hljs-string">"12"</span>)
|
->setCycles(<span class="hljs-string">"12"</span>)
|
||||||
->setAmount(<span class="hljs-keyword">new</span> Currency([<span class="hljs-string">'value'</span> => <span class="hljs-string">'100'</span>, <span class="hljs-string">'currency'</span> => <span class="hljs-string">'USD'</span>]));</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><p>Charge Models</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$chargeModel</span> = <span class="hljs-keyword">new</span> ChargeModel();
|
->setAmount(<span class="hljs-keyword">new</span> Currency(<span class="hljs-keyword">array</span>(<span class="hljs-string">'value'</span> => <span class="hljs-number">100</span>, <span class="hljs-string">'currency'</span> => <span class="hljs-string">'USD'</span>)));</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><p>Charge Models</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$chargeModel</span> = <span class="hljs-keyword">new</span> ChargeModel();
|
||||||
<span class="hljs-variable">$chargeModel</span>->setType(<span class="hljs-string">'SHIPPING'</span>)
|
<span class="hljs-variable">$chargeModel</span>->setType(<span class="hljs-string">'SHIPPING'</span>)
|
||||||
->setAmount(<span class="hljs-keyword">new</span> Currency([<span class="hljs-string">'value'</span> => <span class="hljs-string">'10'</span>, <span class="hljs-string">'currency'</span> => <span class="hljs-string">'USD'</span>]));
|
->setAmount(<span class="hljs-keyword">new</span> Currency(<span class="hljs-keyword">array</span>(<span class="hljs-string">'value'</span> => <span class="hljs-number">10</span>, <span class="hljs-string">'currency'</span> => <span class="hljs-string">'USD'</span>)));
|
||||||
|
|
||||||
<span class="hljs-variable">$paymentDefinition</span>->setChargeModels(<span class="hljs-keyword">array</span>(<span class="hljs-variable">$chargeModel</span>));
|
<span class="hljs-variable">$paymentDefinition</span>->setChargeModels(<span class="hljs-keyword">array</span>(<span class="hljs-variable">$chargeModel</span>));
|
||||||
|
|
||||||
@@ -29,7 +29,7 @@ You should be able to see the acceptable values in the comments.</p></div></div>
|
|||||||
->setAutoBillAmount(<span class="hljs-string">"yes"</span>)
|
->setAutoBillAmount(<span class="hljs-string">"yes"</span>)
|
||||||
->setInitialFailAmountAction(<span class="hljs-string">"CONTINUE"</span>)
|
->setInitialFailAmountAction(<span class="hljs-string">"CONTINUE"</span>)
|
||||||
->setMaxFailAttempts(<span class="hljs-string">"0"</span>)
|
->setMaxFailAttempts(<span class="hljs-string">"0"</span>)
|
||||||
->setSetupFee(<span class="hljs-keyword">new</span> Currency([<span class="hljs-string">'value'</span> => <span class="hljs-string">'1'</span>, <span class="hljs-string">'currency'</span> => <span class="hljs-string">'USD'</span>]));
|
->setSetupFee(<span class="hljs-keyword">new</span> Currency(<span class="hljs-keyword">array</span>(<span class="hljs-string">'value'</span> => <span class="hljs-number">1</span>, <span class="hljs-string">'currency'</span> => <span class="hljs-string">'USD'</span>)));
|
||||||
|
|
||||||
|
|
||||||
<span class="hljs-variable">$plan</span>->setPaymentDefinitions(<span class="hljs-keyword">array</span>(<span class="hljs-variable">$paymentDefinition</span>));
|
<span class="hljs-variable">$plan</span>->setPaymentDefinitions(<span class="hljs-keyword">array</span>(<span class="hljs-variable">$paymentDefinition</span>));
|
||||||
|
|||||||
43
sample/doc/billing/UpdatePlanPaymentDefinitions.html
Normal file
43
sample/doc/billing/UpdatePlanPaymentDefinitions.html
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<!DOCTYPE html><html lang="en"><head><title>billing/UpdatePlanPaymentDefinitions</title></head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"><meta name="groc-relative-root" content="../"><meta name="groc-document-path" content="billing/UpdatePlanPaymentDefinitions"><meta name="groc-project-path" content="billing/UpdatePlanPaymentDefinitions.php"><link rel="stylesheet" type="text/css" media="all" href="../assets/style.css"><script type="text/javascript" src="../assets/behavior.js"></script><body><div id="meta"><div class="file-path">billing/UpdatePlanPaymentDefinitions.php</div></div><div id="document"><div class="segment"><div class="code"><div class="wrapper"><span class="hljs-preprocessor"><?php</span></div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h1 id="update-a-plan">Update a plan</h1>
|
||||||
|
<p>This sample code demonstrate how you can update a billing plan, as documented here at:
|
||||||
|
<a href="https://developer.paypal.com/webapps/developer/docs/api/#update-a-plan">https://developer.paypal.com/webapps/developer/docs/api/#update-a-plan</a>
|
||||||
|
API used: /v1/payments/billing-plans/<Plan-Id></p></div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="changing-plan-amount">Changing Plan Amount</h3>
|
||||||
|
<p>This example demonstrate how you could change the plan amount</p></div></div></div><div class="segment"><div class="comments "><div class="wrapper"><p>Retrieving the Plan object from Create Plan Sample to demonstrate the List</p></div></div><div class="code"><div class="wrapper"><span class="hljs-comment">/**<span class="hljs-phpdoc"> @var</span> Plan $createdPlan */</span>
|
||||||
|
<span class="hljs-variable">$createdPlan</span> = <span class="hljs-keyword">require</span> <span class="hljs-string">'CreatePlan.php'</span>;
|
||||||
|
|
||||||
|
<span class="hljs-keyword">use</span> <span class="hljs-title">PayPal</span>\<span class="hljs-title">Api</span>\<span class="hljs-title">Plan</span>;
|
||||||
|
<span class="hljs-keyword">use</span> <span class="hljs-title">PayPal</span>\<span class="hljs-title">Api</span>\<span class="hljs-title">PatchRequest</span>;
|
||||||
|
<span class="hljs-keyword">use</span> <span class="hljs-title">PayPal</span>\<span class="hljs-title">Api</span>\<span class="hljs-title">Patch</span>;
|
||||||
|
|
||||||
|
<span class="hljs-keyword">try</span> {
|
||||||
|
<span class="hljs-variable">$patch</span> = <span class="hljs-keyword">new</span> Patch();
|
||||||
|
|
||||||
|
<span class="hljs-variable">$paymentDefinitions</span> = <span class="hljs-variable">$createdPlan</span>->getPaymentDefinitions();
|
||||||
|
<span class="hljs-variable">$paymentDefinitionId</span> = <span class="hljs-variable">$paymentDefinitions</span>[<span class="hljs-number">0</span>]->getId();
|
||||||
|
<span class="hljs-variable">$patch</span>->setOp(<span class="hljs-string">'replace'</span>)
|
||||||
|
->setPath(<span class="hljs-string">'/payment-definitions/'</span> . <span class="hljs-variable">$paymentDefinitionId</span>)
|
||||||
|
->setValue(json_decode(
|
||||||
|
<span class="hljs-string">'{
|
||||||
|
"name": "Updated Payment Definition",
|
||||||
|
"frequency": "Day",
|
||||||
|
"amount": {
|
||||||
|
"currency": "USD",
|
||||||
|
"value": "50"
|
||||||
|
}
|
||||||
|
}'</span>
|
||||||
|
));
|
||||||
|
<span class="hljs-variable">$patchRequest</span> = <span class="hljs-keyword">new</span> PatchRequest();
|
||||||
|
<span class="hljs-variable">$patchRequest</span>->addPatch(<span class="hljs-variable">$patch</span>);
|
||||||
|
|
||||||
|
<span class="hljs-variable">$createdPlan</span>->update(<span class="hljs-variable">$patchRequest</span>, <span class="hljs-variable">$apiContext</span>);
|
||||||
|
|
||||||
|
<span class="hljs-variable">$plan</span> = Plan::get(<span class="hljs-variable">$createdPlan</span>->getId(), <span class="hljs-variable">$apiContext</span>);
|
||||||
|
|
||||||
|
} <span class="hljs-keyword">catch</span> (<span class="hljs-keyword">Exception</span> <span class="hljs-variable">$ex</span>) {
|
||||||
|
ResultPrinter::printError(<span class="hljs-string">"Updated the Plan Payment Definition"</span>, <span class="hljs-string">"Plan"</span>, <span class="hljs-keyword">null</span>, <span class="hljs-variable">$patchRequest</span>, <span class="hljs-variable">$ex</span>);
|
||||||
|
<span class="hljs-keyword">exit</span>(<span class="hljs-number">1</span>);
|
||||||
|
}
|
||||||
|
|
||||||
|
ResultPrinter::printResult(<span class="hljs-string">"Updated the Plan Payment Definition"</span>, <span class="hljs-string">"Plan"</span>, <span class="hljs-variable">$plan</span>->getId(), <span class="hljs-variable">$patchRequest</span>, <span class="hljs-variable">$plan</span>);
|
||||||
|
|
||||||
|
<span class="hljs-keyword">return</span> <span class="hljs-variable">$plan</span>;</div></div></div></div></body></html>
|
||||||
@@ -14,7 +14,7 @@ with a valid ApiContext (See bootstrap.php for more on <code>ApiContext</code>)<
|
|||||||
|
|
||||||
<span class="hljs-variable">$amt</span> = <span class="hljs-keyword">new</span> Amount();
|
<span class="hljs-variable">$amt</span> = <span class="hljs-keyword">new</span> Amount();
|
||||||
<span class="hljs-variable">$amt</span>->setCurrency(<span class="hljs-string">"USD"</span>)
|
<span class="hljs-variable">$amt</span>->setCurrency(<span class="hljs-string">"USD"</span>)
|
||||||
->setTotal(<span class="hljs-string">"1.00"</span>);
|
->setTotal(<span class="hljs-number">1</span>);
|
||||||
|
|
||||||
<span class="hljs-comment">### Capture</span>
|
<span class="hljs-comment">### Capture</span>
|
||||||
<span class="hljs-variable">$capture</span> = <span class="hljs-keyword">new</span> Capture();
|
<span class="hljs-variable">$capture</span> = <span class="hljs-keyword">new</span> Capture();
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ to correct setting. In this case, it would be 'authorize'</p></div></div
|
|||||||
|
|
||||||
<span class="hljs-variable">$amount</span> = <span class="hljs-keyword">new</span> Amount();
|
<span class="hljs-variable">$amount</span> = <span class="hljs-keyword">new</span> Amount();
|
||||||
<span class="hljs-variable">$amount</span>->setCurrency(<span class="hljs-string">"USD"</span>)
|
<span class="hljs-variable">$amount</span>->setCurrency(<span class="hljs-string">"USD"</span>)
|
||||||
->setTotal(<span class="hljs-string">"1.00"</span>);
|
->setTotal(<span class="hljs-number">1</span>);
|
||||||
|
|
||||||
<span class="hljs-variable">$transaction</span> = <span class="hljs-keyword">new</span> Transaction();
|
<span class="hljs-variable">$transaction</span> = <span class="hljs-keyword">new</span> Transaction();
|
||||||
<span class="hljs-variable">$transaction</span>->setAmount(<span class="hljs-variable">$amount</span>)
|
<span class="hljs-variable">$transaction</span>->setAmount(<span class="hljs-variable">$amount</span>)
|
||||||
|
|||||||
@@ -37,29 +37,29 @@ information</p></div></div><div class="code"><div class="wrapper"><span class="h
|
|||||||
->setDescription(<span class="hljs-string">'Ground Coffee 40 oz'</span>)
|
->setDescription(<span class="hljs-string">'Ground Coffee 40 oz'</span>)
|
||||||
->setCurrency(<span class="hljs-string">'USD'</span>)
|
->setCurrency(<span class="hljs-string">'USD'</span>)
|
||||||
->setQuantity(<span class="hljs-number">1</span>)
|
->setQuantity(<span class="hljs-number">1</span>)
|
||||||
->setTax(<span class="hljs-string">'0.30'</span>)
|
->setTax(<span class="hljs-number">0.3</span>)
|
||||||
->setPrice(<span class="hljs-string">'7.50'</span>);
|
->setPrice(<span class="hljs-number">7.50</span>);
|
||||||
<span class="hljs-variable">$item2</span> = <span class="hljs-keyword">new</span> Item();
|
<span class="hljs-variable">$item2</span> = <span class="hljs-keyword">new</span> Item();
|
||||||
<span class="hljs-variable">$item2</span>->setName(<span class="hljs-string">'Granola bars'</span>)
|
<span class="hljs-variable">$item2</span>->setName(<span class="hljs-string">'Granola bars'</span>)
|
||||||
->setDescription(<span class="hljs-string">'Granola Bars with Peanuts'</span>)
|
->setDescription(<span class="hljs-string">'Granola Bars with Peanuts'</span>)
|
||||||
->setCurrency(<span class="hljs-string">'USD'</span>)
|
->setCurrency(<span class="hljs-string">'USD'</span>)
|
||||||
->setQuantity(<span class="hljs-number">5</span>)
|
->setQuantity(<span class="hljs-number">5</span>)
|
||||||
->setTax(<span class="hljs-string">'0.20'</span>)
|
->setTax(<span class="hljs-number">0.2</span>)
|
||||||
->setPrice(<span class="hljs-string">'2.00'</span>);
|
->setPrice(<span class="hljs-number">2</span>);
|
||||||
|
|
||||||
<span class="hljs-variable">$itemList</span> = <span class="hljs-keyword">new</span> ItemList();
|
<span class="hljs-variable">$itemList</span> = <span class="hljs-keyword">new</span> ItemList();
|
||||||
<span class="hljs-variable">$itemList</span>->setItems(<span class="hljs-keyword">array</span>(<span class="hljs-variable">$item1</span>, <span class="hljs-variable">$item2</span>));</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="additional-payment-details">Additional payment details</h3>
|
<span class="hljs-variable">$itemList</span>->setItems(<span class="hljs-keyword">array</span>(<span class="hljs-variable">$item1</span>, <span class="hljs-variable">$item2</span>));</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="additional-payment-details">Additional payment details</h3>
|
||||||
<p>Use this optional field to set additional
|
<p>Use this optional field to set additional
|
||||||
payment information such as tax, shipping
|
payment information such as tax, shipping
|
||||||
charges etc.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$details</span> = <span class="hljs-keyword">new</span> Details();
|
charges etc.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$details</span> = <span class="hljs-keyword">new</span> Details();
|
||||||
<span class="hljs-variable">$details</span>->setShipping(<span class="hljs-string">'1.20'</span>)
|
<span class="hljs-variable">$details</span>->setShipping(<span class="hljs-number">1.2</span>)
|
||||||
->setTax(<span class="hljs-string">'1.30'</span>)
|
->setTax(<span class="hljs-number">1.3</span>)
|
||||||
->setSubtotal(<span class="hljs-string">'17.50'</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="amount">Amount</h3>
|
->setSubtotal(<span class="hljs-number">17.5</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="amount">Amount</h3>
|
||||||
<p>Lets you specify a payment amount.
|
<p>Lets you specify a payment amount.
|
||||||
You can also specify additional details
|
You can also specify additional details
|
||||||
such as shipping, tax.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$amount</span> = <span class="hljs-keyword">new</span> Amount();
|
such as shipping, tax.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$amount</span> = <span class="hljs-keyword">new</span> Amount();
|
||||||
<span class="hljs-variable">$amount</span>->setCurrency(<span class="hljs-string">"USD"</span>)
|
<span class="hljs-variable">$amount</span>->setCurrency(<span class="hljs-string">"USD"</span>)
|
||||||
->setTotal(<span class="hljs-string">"20.00"</span>)
|
->setTotal(<span class="hljs-number">20</span>)
|
||||||
->setDetails(<span class="hljs-variable">$details</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="transaction">Transaction</h3>
|
->setDetails(<span class="hljs-variable">$details</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="transaction">Transaction</h3>
|
||||||
<p>A transaction defines the contract of a
|
<p>A transaction defines the contract of a
|
||||||
payment - what is the payment for and who
|
payment - what is the payment for and who
|
||||||
|
|||||||
@@ -19,26 +19,26 @@ information</p></div></div><div class="code"><div class="wrapper"><span class="h
|
|||||||
<span class="hljs-variable">$item1</span>->setName(<span class="hljs-string">'Ground Coffee 40 oz'</span>)
|
<span class="hljs-variable">$item1</span>->setName(<span class="hljs-string">'Ground Coffee 40 oz'</span>)
|
||||||
->setCurrency(<span class="hljs-string">'USD'</span>)
|
->setCurrency(<span class="hljs-string">'USD'</span>)
|
||||||
->setQuantity(<span class="hljs-number">1</span>)
|
->setQuantity(<span class="hljs-number">1</span>)
|
||||||
->setPrice(<span class="hljs-string">'7.50'</span>);
|
->setPrice(<span class="hljs-number">7.5</span>);
|
||||||
<span class="hljs-variable">$item2</span> = <span class="hljs-keyword">new</span> Item();
|
<span class="hljs-variable">$item2</span> = <span class="hljs-keyword">new</span> Item();
|
||||||
<span class="hljs-variable">$item2</span>->setName(<span class="hljs-string">'Granola bars'</span>)
|
<span class="hljs-variable">$item2</span>->setName(<span class="hljs-string">'Granola bars'</span>)
|
||||||
->setCurrency(<span class="hljs-string">'USD'</span>)
|
->setCurrency(<span class="hljs-string">'USD'</span>)
|
||||||
->setQuantity(<span class="hljs-number">5</span>)
|
->setQuantity(<span class="hljs-number">5</span>)
|
||||||
->setPrice(<span class="hljs-string">'2.00'</span>);
|
->setPrice(<span class="hljs-number">2</span>);
|
||||||
|
|
||||||
<span class="hljs-variable">$itemList</span> = <span class="hljs-keyword">new</span> ItemList();
|
<span class="hljs-variable">$itemList</span> = <span class="hljs-keyword">new</span> ItemList();
|
||||||
<span class="hljs-variable">$itemList</span>->setItems(<span class="hljs-keyword">array</span>(<span class="hljs-variable">$item1</span>, <span class="hljs-variable">$item2</span>));</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="additional-payment-details">Additional payment details</h3>
|
<span class="hljs-variable">$itemList</span>->setItems(<span class="hljs-keyword">array</span>(<span class="hljs-variable">$item1</span>, <span class="hljs-variable">$item2</span>));</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="additional-payment-details">Additional payment details</h3>
|
||||||
<p>Use this optional field to set additional
|
<p>Use this optional field to set additional
|
||||||
payment information such as tax, shipping
|
payment information such as tax, shipping
|
||||||
charges etc.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$details</span> = <span class="hljs-keyword">new</span> Details();
|
charges etc.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$details</span> = <span class="hljs-keyword">new</span> Details();
|
||||||
<span class="hljs-variable">$details</span>->setShipping(<span class="hljs-string">'1.20'</span>)
|
<span class="hljs-variable">$details</span>->setShipping(<span class="hljs-number">1.2</span>)
|
||||||
->setTax(<span class="hljs-string">'1.30'</span>)
|
->setTax(<span class="hljs-number">1.3</span>)
|
||||||
->setSubtotal(<span class="hljs-string">'17.50'</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="amount">Amount</h3>
|
->setSubtotal(<span class="hljs-number">17.50</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="amount">Amount</h3>
|
||||||
<p>Lets you specify a payment amount.
|
<p>Lets you specify a payment amount.
|
||||||
You can also specify additional details
|
You can also specify additional details
|
||||||
such as shipping, tax.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$amount</span> = <span class="hljs-keyword">new</span> Amount();
|
such as shipping, tax.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$amount</span> = <span class="hljs-keyword">new</span> Amount();
|
||||||
<span class="hljs-variable">$amount</span>->setCurrency(<span class="hljs-string">"USD"</span>)
|
<span class="hljs-variable">$amount</span>->setCurrency(<span class="hljs-string">"USD"</span>)
|
||||||
->setTotal(<span class="hljs-string">"20.00"</span>)
|
->setTotal(<span class="hljs-number">20</span>)
|
||||||
->setDetails(<span class="hljs-variable">$details</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="transaction">Transaction</h3>
|
->setDetails(<span class="hljs-variable">$details</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="transaction">Transaction</h3>
|
||||||
<p>A transaction defines the contract of a
|
<p>A transaction defines the contract of a
|
||||||
payment - what is the payment for and who
|
payment - what is the payment for and who
|
||||||
|
|||||||
@@ -30,26 +30,26 @@ information</p></div></div><div class="code"><div class="wrapper"><span class="h
|
|||||||
<span class="hljs-variable">$item1</span>->setName(<span class="hljs-string">'Ground Coffee 40 oz'</span>)
|
<span class="hljs-variable">$item1</span>->setName(<span class="hljs-string">'Ground Coffee 40 oz'</span>)
|
||||||
->setCurrency(<span class="hljs-string">'USD'</span>)
|
->setCurrency(<span class="hljs-string">'USD'</span>)
|
||||||
->setQuantity(<span class="hljs-number">1</span>)
|
->setQuantity(<span class="hljs-number">1</span>)
|
||||||
->setPrice(<span class="hljs-string">'7.50'</span>);
|
->setPrice(<span class="hljs-number">7.5</span>);
|
||||||
<span class="hljs-variable">$item2</span> = <span class="hljs-keyword">new</span> Item();
|
<span class="hljs-variable">$item2</span> = <span class="hljs-keyword">new</span> Item();
|
||||||
<span class="hljs-variable">$item2</span>->setName(<span class="hljs-string">'Granola bars'</span>)
|
<span class="hljs-variable">$item2</span>->setName(<span class="hljs-string">'Granola bars'</span>)
|
||||||
->setCurrency(<span class="hljs-string">'USD'</span>)
|
->setCurrency(<span class="hljs-string">'USD'</span>)
|
||||||
->setQuantity(<span class="hljs-number">5</span>)
|
->setQuantity(<span class="hljs-number">5</span>)
|
||||||
->setPrice(<span class="hljs-string">'2.00'</span>);
|
->setPrice(<span class="hljs-number">2</span>);
|
||||||
|
|
||||||
<span class="hljs-variable">$itemList</span> = <span class="hljs-keyword">new</span> ItemList();
|
<span class="hljs-variable">$itemList</span> = <span class="hljs-keyword">new</span> ItemList();
|
||||||
<span class="hljs-variable">$itemList</span>->setItems(<span class="hljs-keyword">array</span>(<span class="hljs-variable">$item1</span>, <span class="hljs-variable">$item2</span>));</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="additional-payment-details">Additional payment details</h3>
|
<span class="hljs-variable">$itemList</span>->setItems(<span class="hljs-keyword">array</span>(<span class="hljs-variable">$item1</span>, <span class="hljs-variable">$item2</span>));</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="additional-payment-details">Additional payment details</h3>
|
||||||
<p>Use this optional field to set additional
|
<p>Use this optional field to set additional
|
||||||
payment information such as tax, shipping
|
payment information such as tax, shipping
|
||||||
charges etc.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$details</span> = <span class="hljs-keyword">new</span> Details();
|
charges etc.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$details</span> = <span class="hljs-keyword">new</span> Details();
|
||||||
<span class="hljs-variable">$details</span>->setShipping(<span class="hljs-string">'1.20'</span>)
|
<span class="hljs-variable">$details</span>->setShipping(<span class="hljs-number">1.2</span>)
|
||||||
->setTax(<span class="hljs-string">'1.30'</span>)
|
->setTax(<span class="hljs-number">1.3</span>)
|
||||||
->setSubtotal(<span class="hljs-string">'17.50'</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="amount">Amount</h3>
|
->setSubtotal(<span class="hljs-number">17.5</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="amount">Amount</h3>
|
||||||
<p>Lets you specify a payment amount.
|
<p>Lets you specify a payment amount.
|
||||||
You can also specify additional details
|
You can also specify additional details
|
||||||
such as shipping, tax.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$amount</span> = <span class="hljs-keyword">new</span> Amount();
|
such as shipping, tax.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$amount</span> = <span class="hljs-keyword">new</span> Amount();
|
||||||
<span class="hljs-variable">$amount</span>->setCurrency(<span class="hljs-string">"USD"</span>)
|
<span class="hljs-variable">$amount</span>->setCurrency(<span class="hljs-string">"USD"</span>)
|
||||||
->setTotal(<span class="hljs-string">"20.00"</span>)
|
->setTotal(<span class="hljs-number">20</span>)
|
||||||
->setDetails(<span class="hljs-variable">$details</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="transaction">Transaction</h3>
|
->setDetails(<span class="hljs-variable">$details</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="transaction">Transaction</h3>
|
||||||
<p>A transaction defines the contract of a
|
<p>A transaction defines the contract of a
|
||||||
payment - what is the payment for and who
|
payment - what is the payment for and who
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ has expired.</p></div></div><div class="code"><div class="wrapper"><span class="
|
|||||||
|
|
||||||
<span class="hljs-variable">$amount</span> = <span class="hljs-keyword">new</span> Amount();
|
<span class="hljs-variable">$amount</span> = <span class="hljs-keyword">new</span> Amount();
|
||||||
<span class="hljs-variable">$amount</span>->setCurrency(<span class="hljs-string">"USD"</span>);
|
<span class="hljs-variable">$amount</span>->setCurrency(<span class="hljs-string">"USD"</span>);
|
||||||
<span class="hljs-variable">$amount</span>->setTotal(<span class="hljs-string">"1.00"</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="reauthorize-with-amount-being-reauthorized">Reauthorize with amount being reauthorized</h3></div></div></div><div class="segment"><div class="code"><div class="wrapper"> <span class="hljs-variable">$authorization</span>->setAmount(<span class="hljs-variable">$amount</span>);
|
<span class="hljs-variable">$amount</span>->setTotal(<span class="hljs-number">1</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="reauthorize-with-amount-being-reauthorized">Reauthorize with amount being reauthorized</h3></div></div></div><div class="segment"><div class="code"><div class="wrapper"> <span class="hljs-variable">$authorization</span>->setAmount(<span class="hljs-variable">$amount</span>);
|
||||||
|
|
||||||
<span class="hljs-variable">$reAuthorization</span> = <span class="hljs-variable">$authorization</span>->reauthorize(<span class="hljs-variable">$apiContext</span>);
|
<span class="hljs-variable">$reAuthorization</span> = <span class="hljs-variable">$authorization</span>->reauthorize(<span class="hljs-variable">$apiContext</span>);
|
||||||
} <span class="hljs-keyword">catch</span> (<span class="hljs-keyword">Exception</span> <span class="hljs-variable">$ex</span>) {
|
} <span class="hljs-keyword">catch</span> (<span class="hljs-keyword">Exception</span> <span class="hljs-variable">$ex</span>) {
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ API used: /v1/payments/sale/{sale-id}/refund</p></div></div><div class="code"><d
|
|||||||
and refunded fee (to Payee). Use the $amt->details
|
and refunded fee (to Payee). Use the $amt->details
|
||||||
field to mention fees refund details.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$amt</span> = <span class="hljs-keyword">new</span> Amount();
|
field to mention fees refund details.</p></div></div><div class="code"><div class="wrapper"><span class="hljs-variable">$amt</span> = <span class="hljs-keyword">new</span> Amount();
|
||||||
<span class="hljs-variable">$amt</span>->setCurrency(<span class="hljs-string">'USD'</span>)
|
<span class="hljs-variable">$amt</span>->setCurrency(<span class="hljs-string">'USD'</span>)
|
||||||
->setTotal(<span class="hljs-string">'0.01'</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="refund-object">Refund object</h3></div></div></div><div class="segment"><div class="code"><div class="wrapper"><span class="hljs-variable">$refund</span> = <span class="hljs-keyword">new</span> Refund();
|
->setTotal(<span class="hljs-number">0.01</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="refund-object">Refund object</h3></div></div></div><div class="segment"><div class="code"><div class="wrapper"><span class="hljs-variable">$refund</span> = <span class="hljs-keyword">new</span> Refund();
|
||||||
<span class="hljs-variable">$refund</span>->setAmount(<span class="hljs-variable">$amt</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="sale">Sale</h3>
|
<span class="hljs-variable">$refund</span>->setAmount(<span class="hljs-variable">$amt</span>);</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="sale">Sale</h3>
|
||||||
<p>A sale transaction.
|
<p>A sale transaction.
|
||||||
Create a Sale object with the
|
Create a Sale object with the
|
||||||
|
|||||||
@@ -167,6 +167,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="list-group-item">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-9 "><h5>Update Plan Payment Definitions/Amount</h5></div>
|
||||||
|
<div class="col-md-3">
|
||||||
|
<a href="billing/UpdatePlanPaymentDefinitions.php" class="btn btn-primary pull-left" >Execute <i class="fa fa-play-circle-o"></i></a>
|
||||||
|
<a href="doc/billing/UpdatePlanPaymentDefinitions.html" class="btn btn-default pull-right" >Source <i class="fa fa-file-code-o"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
<li class="list-group-item">
|
<li class="list-group-item">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-9 "><h5>List Billing Plans</h5></div>
|
<div class="col-md-9 "><h5>List Billing Plans</h5></div>
|
||||||
|
|||||||
@@ -17,8 +17,7 @@
|
|||||||
"path": "v1/payments/billing-plans/",
|
"path": "v1/payments/billing-plans/",
|
||||||
"method": "POST",
|
"method": "POST",
|
||||||
"headers": {},
|
"headers": {},
|
||||||
"body" :
|
"body": {
|
||||||
{
|
|
||||||
"name": "Plan with minimal merchant pref",
|
"name": "Plan with minimal merchant pref",
|
||||||
"description": "Plan with one payment definition,minimal merchant preferences and no charge models",
|
"description": "Plan with one payment definition,minimal merchant preferences and no charge models",
|
||||||
"type": "fixed",
|
"type": "fixed",
|
||||||
@@ -46,8 +45,7 @@
|
|||||||
"response": {
|
"response": {
|
||||||
"status": "201 Created",
|
"status": "201 Created",
|
||||||
"headers": {},
|
"headers": {},
|
||||||
"body" :
|
"body": {
|
||||||
{
|
|
||||||
"id": "P-1TV69435N82273154UPWDU4I",
|
"id": "P-1TV69435N82273154UPWDU4I",
|
||||||
"state": "CREATED",
|
"state": "CREATED",
|
||||||
"name": "Plan with minimal merchant pref",
|
"name": "Plan with minimal merchant pref",
|
||||||
|
|||||||
@@ -22,8 +22,7 @@
|
|||||||
"response": {
|
"response": {
|
||||||
"status": "200 OK",
|
"status": "200 OK",
|
||||||
"headers": {},
|
"headers": {},
|
||||||
"body" :
|
"body": {
|
||||||
{
|
|
||||||
"id": "P-7DC96732KA7763723UOPKETA",
|
"id": "P-7DC96732KA7763723UOPKETA",
|
||||||
"state": "CREATED",
|
"state": "CREATED",
|
||||||
"name": "Sample Plan",
|
"name": "Sample Plan",
|
||||||
|
|||||||
@@ -22,8 +22,7 @@
|
|||||||
"response": {
|
"response": {
|
||||||
"status": "200 OK",
|
"status": "200 OK",
|
||||||
"headers": {},
|
"headers": {},
|
||||||
"body" :
|
"body": {
|
||||||
{
|
|
||||||
"total_items": "166",
|
"total_items": "166",
|
||||||
"total_pages": "83",
|
"total_pages": "83",
|
||||||
"plans": [
|
"plans": [
|
||||||
|
|||||||
@@ -17,8 +17,7 @@
|
|||||||
"path": "v1/payments/billing-plans/{PLAN-ID}/",
|
"path": "v1/payments/billing-plans/{PLAN-ID}/",
|
||||||
"method": "PATCH",
|
"method": "PATCH",
|
||||||
"headers": {},
|
"headers": {},
|
||||||
"body" :
|
"body": [
|
||||||
[
|
|
||||||
{
|
{
|
||||||
"op": "replace",
|
"op": "replace",
|
||||||
"path": "/merchant-preferences",
|
"path": "/merchant-preferences",
|
||||||
|
|||||||
@@ -17,8 +17,7 @@
|
|||||||
"path": "v1/payments/billing-plans/{PLAN-ID}/",
|
"path": "v1/payments/billing-plans/{PLAN-ID}/",
|
||||||
"method": "PATCH",
|
"method": "PATCH",
|
||||||
"headers": {},
|
"headers": {},
|
||||||
"body" :
|
"body": [
|
||||||
[
|
|
||||||
{
|
{
|
||||||
"op": "replace",
|
"op": "replace",
|
||||||
"path": "/payment-definitions/PD-4816080302132415WUQBT7WA",
|
"path": "/payment-definitions/PD-4816080302132415WUQBT7WA",
|
||||||
|
|||||||
@@ -17,8 +17,7 @@
|
|||||||
"path": "v1/payments/billing-plans/{PLAN-ID}/",
|
"path": "v1/payments/billing-plans/{PLAN-ID}/",
|
||||||
"method": "PATCH",
|
"method": "PATCH",
|
||||||
"headers": {},
|
"headers": {},
|
||||||
"body" :
|
"body": [
|
||||||
[
|
|
||||||
{
|
{
|
||||||
"op": "replace",
|
"op": "replace",
|
||||||
"path": "/",
|
"path": "/",
|
||||||
|
|||||||
Reference in New Issue
Block a user