Action = $_REQUEST['action']; $manageRPPStatusReqestDetails->ProfileID = $_REQUEST['profileID']; $manageRPPStatusReqest = new ManageRecurringPaymentsProfileStatusRequestType(); $manageRPPStatusReqest->ManageRecurringPaymentsProfileStatusRequestDetails = $manageRPPStatusReqestDetails; $manageRPPStatusReq = new ManageRecurringPaymentsProfileStatusReq(); $manageRPPStatusReq->ManageRecurringPaymentsProfileStatusRequest = $manageRPPStatusReqest; $paypalService = new PayPalAPIInterfaceServiceService(); try { /* wrap API method calls on the service object with a try catch */ $manageRPPStatusResponse = $paypalService->ManageRecurringPaymentsProfileStatus($manageRPPStatusReq); } catch (Exception $ex) { include_once("../Error.php"); exit; } if(isset($manageRPPStatusResponse)) { echo ""; echo ""; echo ""; echo "
Ack :
$manageRPPStatusResponse->Ack
ProfileID :
".$manageRPPStatusResponse->ManageRecurringPaymentsProfileStatusResponseDetails->ProfileID ."
"; echo "
";
	print_r($manageRPPStatusResponse);
	echo "
"; } require_once '../Response.php';