Voximplant.API 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Voximplant.API --version 1.0.1                
NuGet\Install-Package Voximplant.API -Version 1.0.1                
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="Voximplant.API" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Voximplant.API --version 1.0.1                
#r "nuget: Voximplant.API, 1.0.1"                
#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.
// Install Voximplant.API as a Cake Addin
#addin nuget:?package=Voximplant.API&version=1.0.1

// Install Voximplant.API as a Cake Tool
#tool nuget:?package=Voximplant.API&version=1.0.1                

Voximplant API client library

Prerequisites

In order to use Voximplant SDK for the .NET, you need the following:

  1. A developer account. If you don't have one, sign up here.
  2. A private API key. There are 2 options to obtain it:
    1. Either generate it in the Voximplant Control panel
    2. Or call the CreateKey HTTP API method with the specified authentication parameters. You'll receive a response with the result field in it. Save the result value in a file (since we don't store the keys, save it securely on your side).

Getting started

  • The best way to start is to use NuGet to add the SDK to your Solution:

      nuget install Voximplant.API
    
  • Next, specify the path to the JSON service account file either with the ClientConfig file or using the environment.

    ClientConfig:

    var config = new ClientConfiguration
    {
        KeyFile = "/path/to/credentials.json"
    };
    var api = new VoximplantAPI(config);
    

    Environment:

    export VOXIMPLANT_CREDENTIALS=/path/to/credentials.json
    

Example

This example shows how you can use the API client.

using System;
using Voximplant.API;
using Voximplant.API.Request;

namespace example
{
    class Program
    {
        private static void Main(string[] args)
        {
            try
            {
                var voximplant = new VoximplantAPI();


                var result = voximplant.GetSubscriptionPrice(new GetSubscriptionPriceRequest
                {
                    SubscriptionTemplateType = "SIP_REGISTRATION",
                });

                Console.WriteLine("OK");
            }
            catch (Exception e)
            {
                Console.WriteLine($"Error: {e.Message}");
            }
        }
    }
}
Product 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 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net452 is compatible.  net46 was computed.  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
2.11.0 89 12/12/2024
2.10.0 97 12/4/2024
2.9.0 2,146 8/22/2024
2.8.0 1,101 6/10/2024
2.7.0 102 6/6/2024
2.6.0 111 6/6/2024
2.5.0 545 4/22/2024
2.4.0 179 3/19/2024
2.3.0 1,913 1/25/2024
2.2.0 152 12/6/2023
2.1.0 143 12/4/2023
1.3.0 8,863 12/16/2021
1.2.0 4,079 10/27/2020
1.1.1 528 6/16/2020
1.0.1 515 2/19/2020
1.0.0 485 2/19/2020