VOOZH about

URL: https://www.nuget.org/packages/PayPalServerSDK/

⇱ NuGet Gallery | PayPalServerSDK 2.3.0




PayPalServerSDK 2.3.0

dotnet add package PayPalServerSDK --version 2.3.0
 
 
NuGet\Install-Package PayPalServerSDK -Version 2.3.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PayPalServerSDK" Version="2.3.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PayPalServerSDK" Version="2.3.0" />
 
Directory.Packages.props
<PackageReference Include="PayPalServerSDK" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PayPalServerSDK --version 2.3.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PayPalServerSDK, 2.3.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PayPalServerSDK@2.3.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PayPalServerSDK&version=2.3.0
 
Install as a Cake Addin
#tool nuget:?package=PayPalServerSDK&version=2.3.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Getting Started with PayPal Server SDK

Introduction

Important Notes

  • Available Features: This SDK currently contains only 5 of PayPal's API endpoints. Additional endpoints and functionality will be added in the future.

Information

The PayPal Server SDK provides integration access to the PayPal REST APIs. The API endpoints are divided into distinct controllers:

Install the Package

If you are building with .NET CLI tools then you can also use the following command:

dotnet add package PayPalServerSDK --version 2.3.0

You can also view the package at: https://www.nuget.org/packages/PayPalServerSDK/2.3.0

Initialize the API Client

Note: Documentation for the client can be found here.

The following parameters are configurable for the API Client:

Parameter Type Description
Environment Environment The API environment. <br> Default: Environment.Sandbox
Timeout TimeSpan Http client timeout.<br>Default: TimeSpan.FromSeconds(100)
HttpClientConfiguration Action<HttpClientConfiguration.Builder> Action delegate that configures the HTTP client by using the HttpClientConfiguration.Builder for customizing API call settings.<br>Default: new HttpClient()
LogBuilder LogBuilder Represents the logging configuration builder for API calls
ClientCredentialsAuth ClientCredentialsAuth The Credentials Setter for OAuth 2 Client Credentials Grant

The API client can be initialized as follows:

Code-Based Initialization

using Microsoft.Extensions.Logging;
using PaypalServerSdk.Standard;
using PaypalServerSdk.Standard.Authentication;

namespace ConsoleApp;

PaypalServerSdkClient client = new PaypalServerSdkClient.Builder()
 .ClientCredentialsAuth(
 new ClientCredentialsAuthModel.Builder(
 "OAuthClientId",
 "OAuthClientSecret"
 )
 .Build())
 .HttpClientConfig(httpClientConfig =>
 httpClientConfig.Timeout(TimeSpan.FromSeconds(100)))
 .Environment(PaypalServerSdk.Standard.Environment.Sandbox)
 .LoggingConfig(config => config
 .LogLevel(LogLevel.Information)
 .RequestConfig(reqConfig => reqConfig.Body(true))
 .ResponseConfig(respConfig => respConfig.Headers(true))
 )
 .Build();

Configuration-Based Initialization

using PaypalServerSdk.Standard;
using Microsoft.Extensions.Configuration;

namespace ConsoleApp;

// Build the IConfiguration using .NET conventions (JSON, environment, etc.)
var configuration = new ConfigurationBuilder()
 .AddJsonFile("config.json")
 .AddEnvironmentVariables() // [optional] read environment variables
 .Build();

// Instantiate your SDK and configure it from IConfiguration
var client = PaypalServerSdkClient
 .FromConfiguration(configuration.GetSection("PaypalServerSdk"));

See the Configuration-Based Initialization section for details.

Environments

The SDK can be configured to use a different environment for making API calls. Available environments are:

Fields

Name Description
Production PayPal Live Environment
Sandbox Default PayPal Sandbox Environment

Authorization

This API uses the following authentication schemes.

List of APIs

SDK Infrastructure

Configuration

HTTP

Utilities

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on PayPalServerSDK:

Package Downloads
Umbraco.Community.Merchello.Core

Merchello ecommerce core library for Umbraco - enterprise ecommerce made simple

FahdCloud.ThirdParty.PaymentIntegrations

A .NET C# library for integrating multiple third-party payment gateways into your application. This library provides a unified interface to interact with payment services such as Paymob, Stripe, Taps, MyFatoorah, Fawaterak, Moyasar, Kashier, PayPal, Tabby, and Tamara, enabling seamless payment processing, invoice detail retrieval, and connection health checks. Supports Buy Now Pay Later (BNPL) payments through Tabby and Tamara for GCC region.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.3.0 1,654 6/5/2026
2.2.0 29,116 1/21/2026
2.1.0 11,679 12/4/2025
2.0.0 13,978 11/10/2025
1.1.1 34,693 7/29/2025
1.1.0 12,792 5/27/2025
1.0.0 35,020 3/24/2025
0.7.0 12,355 3/20/2025
0.6.1 59,340 11/21/2024
0.6.0 12,090 10/22/2024
0.5.3 1,686 10/14/2024