protected void Submit_Click(object sender, EventArgs e) { // Create request object BMGetInventoryRequestType request = new BMGetInventoryRequestType(); request.HostedButtonID = hostedID.Value; // Invoke the API BMGetInventoryReq wrapper = new BMGetInventoryReq(); wrapper.BMGetInventoryRequest = request; PayPalAPIInterfaceServiceService service = new PayPalAPIInterfaceServiceService(); BMGetInventoryResponseType response = service.BMGetInventory(wrapper); // Check for API return status setKeyResponseObjects(service, response); }
protected void Submit_Click(object sender, EventArgs e) { // Create request object BMGetInventoryRequestType request = new BMGetInventoryRequestType(); //(Required) The ID of the hosted button whose inventory information you want to obtain. request.HostedButtonID = hostedID.Value; // Invoke the API BMGetInventoryReq wrapper = new BMGetInventoryReq(); wrapper.BMGetInventoryRequest = 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(); // Creating service wrapper object to make an API call by loading configuration map. PayPalAPIInterfaceServiceService service = new PayPalAPIInterfaceServiceService(configurationMap); BMGetInventoryResponseType response = service.BMGetInventory(wrapper); // Check for API return status setKeyResponseObjects(service, response); }