C# SDK for Ringer teliport

Installation

Install-Package Ringer.ringer.teliport

Documentation

The SDK for ringer teliport provides a convenient way to interact with the API from your C# application.

Authentication

This API uses IP whitelist authentication. Ensure your server IP is whitelisted before making requests.

Basic Usage

using Ringer.ringer.teliport;

namespace Example
{
    class Program
    {
        static async Task Main(string[] args)
        {
            var client = new RingerTeliportClient(
                // IP whitelist authentication is handled automatically
                basePath: "https://api.ringer.tel/v1"
            );
            
            try
            {
                var response = await client.SomeEndpointAsync();
                Console.WriteLine(response);
            }
            catch (Exception ex)
            {
                Console.WriteLine($"Error: {ex.Message}");
            }
        }
    }
}