// Creating a new domain var api = new OVHApi("API_ENDPOINT", "APP_KEY", "APP_SECRET", "CONSUMER_KEY"); try { api.Post("/domain/zone", new { domain = "example.com" }); Console.WriteLine("Domain created successfully!"); } catch (OVHApiException ex) { Console.WriteLine("Error: " + ex.Message); }In this example, the OVH API endpoint, app key, app secret, and consumer key are passed to the constructor of the OVHApi class. Then, the Post method is called to create a new domain using the /domain/zone URI and passing the required parameters. Overall, the C# OVH API package provides a convenient and efficient way to manage OVH services and automate tasks in C# applications.