Questions tagged [godaddy-api]

Questions regarding GoDaddy API

GoDaddy API used to interact with GoDaddy

The GoDaddy API allows developers to interact with the GoDaddy system to manage domains and accounts in the same way we do. The API can be used by anyone who wants to create their own experience for registering, purchasing, and managing a domain.

Site: https://developer.godaddy.com/

Docs: https://developer.godaddy.com/doc

206 questions
18
votes
6 answers

I have Godaddy Shared Web Hosting I need to host node.js website can host site?

Anyone have an idea to host a site or reference for how to install a node server on Godaddy. We have Godaddy shared hosting which provides full Cpanel and looking to customize this shared hosting. What is the step to follow and Is we can able to…
Bhavik Limbani
  • 319
  • 1
  • 2
  • 9
11
votes
3 answers

Godaddy api authorization error

I am trying to develop client application for GoDaddy based on their API that they provide here https://developer.godaddy.com And I have a problem with simple example, I am trying to use the next PHP code to check if domain available: use…
Network_SPY
  • 243
  • 2
  • 9
10
votes
3 answers

Adding an A Record with GoDaddy API

I'm trying to add an A record to a domain using GoDaddy's API, but I'm getting a 422 (Unprocessable Entity) response error in the console of my browser. However, when I test the request using GoDaddy's documentation on…
PurpleTurtle
  • 101
  • 1
  • 4
9
votes
2 answers

How to configure SendGrid Sender Authentication (Domain Verification) in GoDaddy

Unable to validate the domain with GoDaddy after adding the CNAMEs from SendGrid
6
votes
1 answer

Convert cUrl command to HTTP Request in Swift

I am building an app that checks domain availability. Right now, I am using the goDaddy API; according to goDaddy, the way to check URL availability is by the following cURL command: curl -X GET -H "Authorization: sso-key {API_KEY}:{API_SECRET}"…
Danny
  • 93
  • 1
  • 7
4
votes
3 answers

Certbot - DNS problem: NXDOMAIN looking up A for xxx - check that a DNS records exists for this

So I tried to run the following sudo certbot certonly --nginx --dry-run -d subdomain.domain.com -d www.subdomain.domain.com That gave me a DNS problem, however, it worked when running sudo certbot certonly --nginx --dry-run -d…
isebarn
  • 3,066
  • 5
  • 13
  • 27
4
votes
0 answers

Call to undefined method mysqli_stmt::get_result() with mysqlnd enabled

Initially I had this error saying Call to undefined method mysqli_stmt::get_result() Then after searching I found out that I have to enable mysqlnd driver for that. I using godaddy hosting site and I have enabled the mysqlnd driver but I am still…
user7360646
3
votes
1 answer

Cannot get wildcard certificate with traefik v2 and godaddy

I'm trying to set up a wildcard certificate mechanism with traefik v2.2 and GoDaddy. What I want to do is generating a valid certificate for the URLs pattern *.example.org. Here there is my docker-compose: version: '3.7' services: traefik: …
floatingpurr
  • 5,024
  • 5
  • 30
  • 79
3
votes
1 answer

How to configure A type record Or IP address to static website in Azure

I created a html page and placed in Azure blob storage. After I created an endpoint and configured it in GoDaddy DNS as a CNAME. But what value do i need to configure for A value in GoDaddy. I created a CNAME record with DNS provider. I used example…
3
votes
1 answer

SSO across multiple websites (multiple databases)

slightly losing my mind here and I would really like some help to get me pointed in the right direction. I'm using a shared Linux server on GoDaddy where I have two PHP websites with separate user logins authenticating with two separate MySQL…
3
votes
6 answers

Error 422 When Using Powershell to Update DNS Records on GoDaddy API

I am trying to update my DNS with GoDaddy via their API (My home network is on a Dynamic IP). I am able to succesfully update when using the script found at http://teanazar.com/2016/05/godaddy-ddns-updater/ when run through cygwin. However I am…
2
votes
2 answers

PHPMailer not sending emails with GoDaddy

I am setting up a mailer on GoDaddy, my code looks as follows: $mail = new PHPMailer(true); $mail->IsSMTP(); $mail->SMTPDebug = 3; $mail->SMTPAuth = false; $mail->Port = 25; $mail->Host = "localhost"; $mail->Username = 'username'; $mail->Password = …
2
votes
0 answers

Error while trying to transfer azure custom domain to another account

I Have bought a custom domain from Azure Portal, but now for some reason I need to transfer the ownership to another Azure Portal account. I logged into 'Advanced Management portal', and I saw option to transfer the domain to another Azure account,…
karim alaa
  • 812
  • 2
  • 7
  • 28
2
votes
1 answer

GoDaddy Deleting a single DNS record through the API using Bash/Shell script

I'd like to delete a single DNS record (an A record) through the API via CURL or any other Shell/Bash command. I also tried to access GoDaddy's website but unfortunately it no longer exists and returns…
James
  • 363
  • 6
  • 15
2
votes
1 answer

Nodemailer connection timeout error using Godaddy SMTP server on aws

I am trying to send email using nodemailer using godaddy smtp server(secureserver.net). On my local machine code works fine but when I deploy same code on aws server it gives Error: Connection timeout. Here is my code const nodemailer =…
1
2 3
13 14