ProfileID = $_REQUEST['profileID']; $getRPPDetailsReq = new GetRecurringPaymentsProfileDetailsReq(); $getRPPDetailsReq->GetRecurringPaymentsProfileDetailsRequest = $getRPPDetailsReqest; $paypalService = new PayPalAPIInterfaceServiceService(); try { /* wrap API method calls on the service object with a try catch */ $getRPPDetailsResponse = $paypalService->GetRecurringPaymentsProfileDetails($getRPPDetailsReq); } catch (Exception $ex) { include_once("../Error.php"); exit; } if(isset($getRPPDetailsResponse)) { echo "
| Ack : | $getRPPDetailsResponse->Ack |
| ProfileID : | ". $getRPPDetailsResponse->GetRecurringPaymentsProfileDetailsResponseDetails->ProfileID ." |
"; print_r($getRPPDetailsResponse); echo ""; } require_once '../Response.php';