ovh-api 5.0.6

dotnet add package ovh-api --version 5.0.6
                    
NuGet\Install-Package ovh-api -Version 5.0.6
                    
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="ovh-api" Version="5.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ovh-api" Version="5.0.6" />
                    
Directory.Packages.props
<PackageReference Include="ovh-api" />
                    
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 ovh-api --version 5.0.6
                    
#r "nuget: ovh-api, 5.0.6"
                    
#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.
#:package ovh-api@5.0.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ovh-api&version=5.0.6
                    
Install as a Cake Addin
#tool nuget:?package=ovh-api&version=5.0.6
                    
Install as a Cake Tool

OVH API Client for .NET

NuGet version Build Status

This is a .NET client library for interacting with the OVH API, enabling developers to manage OVH resources programmatically using C# and .NET.

Installation

You can install the package via NuGet:

dotnet add package ovh-api

Or by adding it to your project file:

<PackageReference Include="ovh-api" Version="x.x.x" />

Usage

Here's a basic example of how to use the OVH API client in your .NET project:

using Ovh.Api;

var client = new OvhClient(
    applicationKey: "your_application_key",
    applicationSecret: "your_application_secret",
    consumerKey: "your_consumer_key",
    endpoint: "https://eu.api.ovh.com/1.0/"
);

// Example: Retrieve a list of domains
var domains = await client.GetAsync<string[]>("/domain");

// Example: Get account information
var accountInfo = await client.GetAsync<AccountInformation>("/me");

Features

  • Simple and intuitive API for interacting with OVH services.
  • Supports multiple OVH endpoints (e.g., Europe, Canada).
  • Handles authentication and request signing automatically.

Supported Endpoints

  • Europe V1: https://eu.api.ovh.com/1.0/
  • Canada V1: https://ca.api.ovh.com/1.0/
  • US V1: https://api.us.ovhcloud.com/1.0/
  • Europe V2: https://eu.api.ovh.com/2.0/
  • Canada V2: https://ca.api.ovh.com/2.0/
  • US V2: https://api.us.ovhcloud.com/2.0/

Documentation

For full API documentation, please visit the official OVH API documentation: https://api.ovh.com/

Contributing

Contributions are welcome! Please fork the repository and submit a pull request.

  1. Fork it (https://github.com/NebulaMods/ovh-api/fork)
  2. Create your feature branch (git checkout -b feature/your-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin feature/your-feature)
  5. Create a new Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contact

If you have any questions or need support, feel free to open an issue on GitHub or contact me directly.


This README includes installation instructions, usage examples, features, supported endpoints, and contribution guidelines. Adjust any sections as needed based on your project's specifics.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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
5.0.6 648 2/6/2025
5.0.5 147 2/6/2025
5.0.4 154 2/5/2025
5.0.3 149 2/5/2025
5.0.2 145 2/5/2025
5.0.1 152 2/5/2025
5.0.0 670 8/14/2024
4.0.5 169 8/8/2024