Splitit.Web.Net 1.0.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package Splitit.Web.Net --version 1.0.8
                    
NuGet\Install-Package Splitit.Web.Net -Version 1.0.8
                    
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="Splitit.Web.Net" Version="1.0.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Splitit.Web.Net" Version="1.0.8" />
                    
Directory.Packages.props
<PackageReference Include="Splitit.Web.Net" />
                    
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 Splitit.Web.Net --version 1.0.8
                    
#r "nuget: Splitit.Web.Net, 1.0.8"
                    
#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.
#addin nuget:?package=Splitit.Web.Net&version=1.0.8
                    
Install Splitit.Web.Net as a Cake Addin
#tool nuget:?package=Splitit.Web.Net&version=1.0.8
                    
Install Splitit.Web.Net as a Cake Tool

Splitit.Web.Net - the C# library for the splitit-web-api-v3

Splitit's API

This C# SDK is automatically generated by the Konfig:

  • API version: 1.0.0
  • SDK version: 1.0.8

<a name="frameworks-supported"></a>

Frameworks supported

  • .NET Core >=1.0
  • .NET Framework >=4.6
  • Mono/Xamarin >=vNext

<a name="dependencies"></a>

Dependencies

The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:

Install-Package RestSharp
Install-Package Newtonsoft.Json
Install-Package JsonSubTypes
Install-Package System.ComponentModel.Annotations

NOTE: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See RestSharp#742. NOTE: RestSharp for .Net Core creates a new socket for each api call, which can lead to a socket exhaustion problem. See RestSharp#1406.

<a name="installation"></a>

Installation

Generate the DLL using your preferred tool (e.g. dotnet build)

Then include the DLL (under the bin folder) in the C# project, and use the namespaces:

using Splitit.Web.Net.Api;
using Splitit.Web.Net.Client;
using Splitit.Web.Net.Model;

<a name="usage"></a>

Usage

To use the API client with a HTTP proxy, setup a System.Net.WebProxy

Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;

<a name="getting-started"></a>

Getting Started

using System.Collections.Generic;
using System.Diagnostics;
using Splitit.Web.Net.Api;
using Splitit.Web.Net.Client;
using Splitit.Web.Net.Model;

namespace Example
{
    public class Example
    {
        public static void Main()
        {

            Configuration config = new Configuration();

            // Configure custom BasePath if desired
            // config.BasePath = "https://web-api-v3.sandbox.splitit.com";

            // Configure OAuth2 credentials for "application" OAuth flow
            string clientId = System.Environment.GetEnvironmentVariable("CLIENT_ID");
            string clientSecret = System.Environment.GetEnvironmentVariable("CLIENT_SECRET");
            config.OAuthClientId = clientId;
            config.OAuthClientSecret = clientSecret;

            var apiInstance = new InstallmentPlanApi(config);
            var installmentPlanNumber = "installmentPlanNumber_example";  // string | 
            var xSplititIdempotencyKey = "xSplititIdempotencyKey_example";  // string | 

            try
            {
                InstallmentPlanCancelResponse result = apiInstance.Cancel(installmentPlanNumber, xSplititIdempotencyKey);
                Debug.WriteLine(result);
            }
            catch (ApiException e)
            {
                Debug.Print("Exception when calling InstallmentPlanApi.Cancel: " + e.Message );
                Debug.Print("Status Code: "+ e.ErrorCode);
                Debug.Print(e.StackTrace);
            }

        }
    }
}

<a name="documentation-for-api-endpoints"></a>

Documentation for API Endpoints

All URIs are relative to https://web-api-v3.sandbox.splitit.com

Class Method HTTP request Description
InstallmentPlanApi Cancel POST /api/installmentplans/{installmentPlanNumber}/cancel
InstallmentPlanApi Get GET /api/installmentplans/{installmentPlanNumber}
InstallmentPlanApi Post POST /api/installmentplans
InstallmentPlanApi Refund POST /api/installmentplans/{installmentPlanNumber}/refund
InstallmentPlanApi Search GET /api/installmentplans/search
InstallmentPlanApi UpdateOrder PUT /api/installmentplans/{installmentPlanNumber}/updateorder
InstallmentPlanApi UpdateOrder2 PUT /api/installmentplans/updateorder
InstallmentPlanApi VerifyAuthorization GET /api/installmentplans/{installmentPlanNumber}/verifyauthorization

<a name="documentation-for-models"></a>

Documentation for Models

<a name="documentation-for-authorization"></a>

Documentation for Authorization

<a name="bearer"></a>

bearer

  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
    • api.v3:
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.9 158 12/5/2024
3.0.8 100 11/19/2024
3.0.7 87 10/21/2024
3.0.6 101 10/9/2024
3.0.5 104 9/30/2024
3.0.4 117 9/19/2024
3.0.3 122 9/9/2024
3.0.2 112 7/22/2024
3.0.1 110 6/24/2024
3.0.0 222 3/24/2024
2.1.8 128 2/20/2024
2.1.7 120 2/19/2024
2.1.6 138 2/14/2024
2.1.5 140 2/7/2024
2.1.4 142 2/6/2024
2.1.3 117 1/31/2024
2.1.2 145 12/20/2023
2.1.1 207 11/7/2023
2.1.0 907 4/25/2023
2.0.0 231 3/25/2023
1.1.0 312 1/30/2023
1.0.8 319 1/10/2023

Minor update