示例#1
0
        /**
         *
         */
        public CreateBillingAgreementResponseType CreateBillingAgreement(CreateBillingAgreementReq CreateBillingAgreementReq, string apiUsername)
        {
            setStandardParams(CreateBillingAgreementReq.CreateBillingAgreementRequest);
            string resp = call("CreateBillingAgreement", CreateBillingAgreementReq.toXMLString(), apiUsername);

            return(new CreateBillingAgreementResponseType(resp));
        }
示例#2
0
        protected void Submit_Click(object sender, EventArgs e)
        {
            // Create request object
            CreateBillingAgreementRequestType request = new CreateBillingAgreementRequestType();

            // (Required) The time-stamped token returned in the SetCustomerBillingAgreement response.
            // Note: The token expires after 3 hours.
            request.Token = token.Value;

            // Invoke the API
            CreateBillingAgreementReq wrapper = new CreateBillingAgreementReq();

            wrapper.CreateBillingAgreementRequest = request;

            // Configuration map containing signature credentials and other required configuration.
            // For a full list of configuration parameters refer in wiki page
            // [https://github.com/paypal/sdk-core-dotnet/wiki/SDK-Configuration-Parameters]
            Dictionary <string, string> configurationMap = Configuration.GetAcctAndConfig();

            // Create the PayPalAPIInterfaceServiceService service object to make the API call
            PayPalAPIInterfaceServiceService service = new PayPalAPIInterfaceServiceService(configurationMap);

            // # API call
            // Invoke the CreateBillingAgreement method in service wrapper object
            CreateBillingAgreementResponseType billingAgreementResponse =
                service.CreateBillingAgreement(wrapper);

            // Check for API return status
            setKeyResponseObjects(service, billingAgreementResponse);
        }
示例#3
0
        public async Task <AckCodeType> CreateBillingAgreementAsync(CreateBillingAgreementReq request)
        {
            PayPalAPIAAInterfaceClient client = new PayPalAPIAAInterfaceClient();
            var response = await client.CreateBillingAgreementAsync(GetAuthorizationRequest(), request);

            return(response.CreateBillingAgreementResponse1.Ack);
        }
示例#4
0
        public PaypalResponse CreateBillingAgreement(PaypalResponse response)
        {
            CreateBillingAgreementRequestType request = new CreateBillingAgreementRequestType();

            // (Required) The time-stamped token returned in the SetCustomerBillingAgreement response.
            // Note: The token expires after 3 hours.
            request.Token = response.ECToken;

            // Invoke the API
            CreateBillingAgreementReq wrapper = new CreateBillingAgreementReq();

            wrapper.CreateBillingAgreementRequest = request;

            // Configuration map containing signature credentials and other required configuration.
            // For a full list of configuration parameters refer in wiki page
            // [https://github.com/paypal/sdk-core-dotnet/wiki/SDK-Configuration-Parameters]
            Dictionary <string, string> configurationMap = Configuration.GetAcctAndConfig();

            // Create the PayPalAPIInterfaceServiceService service object to make the API call
            PayPalAPIInterfaceServiceService service = new PayPalAPIInterfaceServiceService(configurationMap);

            // # API call
            // Invoke the CreateBillingAgreement method in service wrapper object
            CreateBillingAgreementResponseType billingAgreementResponse = service.CreateBillingAgreement(wrapper);
            PaypalResponse responsePaypal = new PaypalResponse();

            responsePaypal = GetBillingAgreementID(billingAgreementResponse);
            return(responsePaypal);
        }
        /**
         * AUTO_GENERATED
         */
        public CreateBillingAgreementResponseType CreateBillingAgreement(CreateBillingAgreementReq createBillingAgreementReq, string apiUserName)
        {
            setStandardParams(createBillingAgreementReq.CreateBillingAgreementRequest);
            string      response    = Call("CreateBillingAgreement", createBillingAgreementReq.ToXMLString(), apiUserName);
            XmlDocument xmlDocument = new XmlDocument();

            xmlDocument.LoadXml(response);
            XmlNode xmlNode = xmlDocument.SelectSingleNode("*[local-name()='Envelope']/*[local-name()='Body']/*[local-name()='CreateBillingAgreementResponse']");

            return(new CreateBillingAgreementResponseType(xmlNode));
        }
示例#6
0
        protected void Submit_Click(object sender, EventArgs e)
        {
            // Create request object
            CreateBillingAgreementRequestType request = new CreateBillingAgreementRequestType();

            request.Token = token.Value;

            // Invoke the API
            CreateBillingAgreementReq wrapper = new CreateBillingAgreementReq();

            wrapper.CreateBillingAgreementRequest = request;
            PayPalAPIInterfaceServiceService   service = new PayPalAPIInterfaceServiceService();
            CreateBillingAgreementResponseType billingAgreementResponse =
                service.CreateBillingAgreement(wrapper);

            // Check for API return status
            setKeyResponseObjects(service, billingAgreementResponse);
        }
示例#7
0
 /// <remarks/>
 public void CreateBillingAgreementAsync(CreateBillingAgreementReq CreateBillingAgreementReq, object userState) {
     if ((this.CreateBillingAgreementOperationCompleted == null)) {
         this.CreateBillingAgreementOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateBillingAgreementOperationCompleted);
     }
     this.InvokeAsync("CreateBillingAgreement", new object[] {
                 CreateBillingAgreementReq}, this.CreateBillingAgreementOperationCompleted, userState);
 }
示例#8
0
 /// <remarks/>
 public void CreateBillingAgreementAsync(CreateBillingAgreementReq CreateBillingAgreementReq) {
     this.CreateBillingAgreementAsync(CreateBillingAgreementReq, null);
 }
示例#9
0
 public CreateBillingAgreementResponseType CreateBillingAgreement(CreateBillingAgreementReq CreateBillingAgreementReq)
 {
     return(CreateBillingAgreement(CreateBillingAgreementReq, null));
 }