* the same request.
 */
$setFundingSourceConfirmed->emailAddress = $_REQUEST['emailAddress'];
/*
 * (Required) The funding source key returned in the AddBankAccount or AddPaymentCard response.
 */
$setFundingSourceConfirmed->fundingSourceKey = $_REQUEST['fundingSourceKey'];
// ## Creating service wrapper object
// Creating service wrapper object to make API call
// Configuration::getAcctAndConfig() returns array that contains credential and config parameters
$service = new AdaptiveAccountsService(Configuration::getAcctAndConfig());
try {
    // ## Making API call
    // invoke the appropriate method corresponding to API in service
    // wrapper object
    $response = $service->SetFundingSourceConfirmed($setFundingSourceConfirmed);
} catch (Exception $ex) {
    require_once 'Common/Error.php';
    exit;
}
// ## Accessing response parameters
// You can access the response parameters as shown below
$ack = strtoupper($response->responseEnvelope->ack);
if ($ack != "SUCCESS") {
    echo "<b>Error </b>";
    echo "<pre>";
    print_r($response);
    echo "</pre>";
} else {
    echo "<table>";
    echo "<tr><td>Ack :</td><td><div id='Ack'>{$ack}</div> </td></tr>";