sdksio.AdyenPaymentsSDK
1.0.1
dotnet add package sdksio.AdyenPaymentsSDK --version 1.0.1
NuGet\Install-Package sdksio.AdyenPaymentsSDK -Version 1.0.1
<PackageReference Include="sdksio.AdyenPaymentsSDK" Version="1.0.1" />
paket add sdksio.AdyenPaymentsSDK --version 1.0.1
#r "nuget: sdksio.AdyenPaymentsSDK, 1.0.1"
// Install sdksio.AdyenPaymentsSDK as a Cake Addin #addin nuget:?package=sdksio.AdyenPaymentsSDK&version=1.0.1 // Install sdksio.AdyenPaymentsSDK as a Cake Tool #tool nuget:?package=sdksio.AdyenPaymentsSDK&version=1.0.1
Getting Started with Adyen Merged API
Introduction
Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).
This API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit online payments documentation.
Authentication
Each request to Checkout API must be signed with an API key. For this, get your API key from your Customer Area, and set this key to the X-API-Key
header value, for example:
curl
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
...
Versioning
Checkout API supports versioning using a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.
For example:
https://checkout-test.adyen.com/v71/payments
Going live
To access the live endpoints, you need an API key from your live Customer Area.
The live endpoint URLs contain a prefix which is unique to your company account, for example:
https://{PREFIX}-checkout-live.adyenpayments.com/checkout/v71/payments
Get your {PREFIX}
from your live Customer Area under Developers > API URLs > Prefix.
When preparing to do live transactions with Checkout API, follow the go-live checklist to make sure you've got all the required configuration in place.
Release notes
Have a look at the release notes to find out what changed in this version!
Install the Package
If you are building with .NET CLI tools then you can also use the following command:
dotnet add package sdksio.AdyenPaymentsSDK --version 1.0.1
You can also view the package at: https://www.nuget.org/packages/sdksio.AdyenPaymentsSDK/1.0.1
Test the SDK
The generated SDK also contain one or more Tests, which are contained in the Tests project. In order to invoke these test cases, you will need NUnit 3.0 Test Adapter Extension
for Visual Studio. Once the SDK is complied, the test cases should appear in the Test Explorer window. Here, you can click Run All
to execute these test cases.
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 |
---|---|---|
XAPIKey |
string |
API Key |
Environment |
Environment | The API environment. <br> Default: Environment.Live |
Timeout |
TimeSpan |
Http client timeout.<br>Default: TimeSpan.FromSeconds(100) |
BasicAuthUserName |
string |
The username to use with basic authentication |
BasicAuthPassword |
string |
The password to use with basic authentication |
The API client can be initialized as follows:
AdyenMergedAPI.Standard.AdyenMergedAPIClient client = new AdyenMergedAPI.Standard.AdyenMergedAPIClient.Builder()
.BasicAuthCredentials("BasicAuthUserName", "BasicAuthPassword")
.XAPIKey("X-API-Key")
.Environment(AdyenMergedAPI.Standard.Environment.Live)
.Build();
Environments
The SDK can be configured to use a different environment for making API calls. Available environments are:
Fields
Name | Description |
---|---|
Live | Default |
Test | - |
Authorization
This API uses Basic Authentication
.
List of APIs
- Paymentlinks
- Classic Checkout SDK
- Instantpayouts
- Payments
- Modifications
- Recurring
- Orders
- Utility
- Initialization
- Reviewing
Classes Documentation
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- APIMatic.Core (>= 0.3.4)
- Microsoft.CSharp (>= 4.7.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.