All Projects → ahwm → GodaddyWrapper.Net

ahwm / GodaddyWrapper.Net

Licence: MIT License
.Net GoDaddy API Wrapper in C#

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to GodaddyWrapper.Net

Rocksdb Sharp
.net bindings for the rocksdb by facebook
Stars: ✭ 173 (+1053.33%)
Mutual labels:  wrapper, dotnetcore
pastebin-csharp
API client for Pastebin in C#
Stars: ✭ 25 (+66.67%)
Mutual labels:  wrapper
JirAgileR
User-friendly 🔹JIRA API wrapper. Track projects & issues from within R
Stars: ✭ 22 (+46.67%)
Mutual labels:  wrapper
fplbot
🤖 Chatbot for Fantasy Premier League (Slack/Discord)
Stars: ✭ 14 (-6.67%)
Mutual labels:  dotnetcore
SimpleCore
.NET C# common/utilities library
Stars: ✭ 11 (-26.67%)
Mutual labels:  dotnetcore
hanami-bootstrap
Bootstrap wrapper for hanami framework.
Stars: ✭ 13 (-13.33%)
Mutual labels:  wrapper
awesome-dotnet-async
A curated list of awesome articles and resources to learning and practicing about async, threading, and channels in .Net platform. 😉
Stars: ✭ 84 (+460%)
Mutual labels:  dotnetcore
elixir-queue
Queue data structure for Elixir-lang
Stars: ✭ 18 (+20%)
Mutual labels:  wrapper
ffmpeg-progressbar-cli
A colored progress bar for FFmpeg.
Stars: ✭ 140 (+833.33%)
Mutual labels:  wrapper
laravel-mjml
Laravel MJML offers support for rendering MJML syntax into in-line HTML that can be sent within mails.
Stars: ✭ 26 (+73.33%)
Mutual labels:  wrapper
silky
The Silky framework is designed to help developers quickly build a microservice development framework through simple code and configuration under the .net platform.
Stars: ✭ 146 (+873.33%)
Mutual labels:  dotnetcore
Dotnet-Automatize
AutoUpgrade is a .Net Global tool that will automatically update your Project Files, DockerFiles, docker-compose, and .env files with the changes required for migrating to new versions of .Net
Stars: ✭ 15 (+0%)
Mutual labels:  dotnetcore
recommender
NReco Recommender is a .NET port of Apache Mahout CF java engine (standalone, non-Hadoop version)
Stars: ✭ 35 (+133.33%)
Mutual labels:  dotnetcore
hugo-wrapper
The universal way to include Hugo binary to your project.
Stars: ✭ 27 (+80%)
Mutual labels:  wrapper
WebCam-Streaming
Web-cam live streaming with websockets and SignalR with ASP.NET Core just for fun and to learn new things. 😀👨🏻‍💻
Stars: ✭ 31 (+106.67%)
Mutual labels:  dotnetcore
lobe.NET
.NET library for lobe.
Stars: ✭ 40 (+166.67%)
Mutual labels:  dotnetcore
microservice-bootstrap
Get started with Microservices using dotnet core
Stars: ✭ 18 (+20%)
Mutual labels:  dotnetcore
NCalc2
GitHub clone of NCalc from http://ncalc.codeplex.com/
Stars: ✭ 97 (+546.67%)
Mutual labels:  dotnetcore
Dis-Snek
A Python API wrapper for Discord
Stars: ✭ 71 (+373.33%)
Mutual labels:  wrapper
node-latex
🧾 A utility for running LaTeX subprocesses in Node.
Stars: ✭ 31 (+106.67%)
Mutual labels:  wrapper

GodaddyWrapper.Net

nuget Build status

A Brief Intro

GodaddyWrapper.NET is a .NET Wrapper for calling GoDaddy REST API.

Visit GoDaddy Rest API Docs

Usage

var client = new Client("{key}", "{secret}", "https://api.godaddy.com/api/v1/"); 
// Default is https://api.ote-godaddy.com/api/v1/ (Test link of Godaddy)
try
{
    var response = await client.CheckDomainAvailable(new DomainAvailable
    {
        domain = "google.com"
    });
}
catch (GodaddyException ex) 
{
    //Godaddy Error Message from the Godaddy API
    Console.WriteLine(ex.ErrorResponse.Message);
    //Error Code
    Console.WriteLine(ex.StatusCode);
}

Remark

As I only use the domain part (Suggested Domain, Buy Domain, CheckAvailable, etc.), I haven't tested the other parts of it so feel free to leave an issue if you find something wrong (also welcome to make a pull request). Please provide as much info as you can.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].