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

280 questions
3
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 = …
3
votes
1 answer

Not able to Login to IMAP server for office365 account via GoDaddy

I am trying to configure a client's office365/GoDaddy account to an email client using IMAP. But it fails to Login to IMAP server. Below is the error: ChilkatLog: Login: DllDate: Dec 21 2018 ChilkatVersion: 9.5.0.76 UnlockPrefix:…
Asmi
  • 157
  • 1
  • 1
  • 14
3
votes
1 answer

Godaddy Domain name to azure static website mapping

I have taken the domain name from Godaddy. After that, I have chosen static website in azure storage account and added one index.html in blob storage. The page is accessible from azure's given URL https://xyz.z29.web.core.windows.net. I want to map…
harpal
  • 426
  • 4
  • 12
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
2 answers

Is Godaddy API returning bad results?

I'm trying to figure out if I'm doing something wrong, or if GoDaddy is just returning bad results. When I check the domain availability on their API sandbox, domains show up as "true" or available. But then, when I check on the front end of…
3
votes
1 answer

Not Getting Custom Nameservers Using Godaddy Api

I used this api call to get DNS records and nameservers using domain name https://api.godaddy.com/v1/domains/testsd34.com/records/NS GetRecords here is the api call For default godaddy nameservers its giving everything perfectly but whenever i am…
arvind
  • 137
  • 1
  • 7
3
votes
1 answer

Which Is The Valid Format For Phone Number Field On GoDaddy Domain Registration API

I have faced an issue on the domain registration API integration which is provided by GoDaddy. I have a reseller account on GoDaddy. When i execute the domain registration API with sample data, the api returns an invalid body message with the below…
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
0 answers

Error sending email using EWS and a domain created at Godaddy

I have a class for sending an email that uses the functions and properties of the EWS to do the service of reading boxes and sending an email. Using the @hotmail.com domain, I can read boxes and send emails normally. However, when I switch to my own…
Costa.Gustavo
  • 849
  • 10
  • 21
2
votes
1 answer

Can I automate that the React app build to be deployed on GoDaddy server from GitHub

Usually, I use Netlify to deploy my React app which auto-publishes the code for every GitHub push. Can I do something similar with shared hosting like GoDaddy server, because for every change I have to make a build and then have to manually upload…
2
votes
1 answer

SSL Apache csr .pem .key on GoDaddy

Morning guys I have never really dealt with SSL's on an apache server. I found the domain on godaddy for my site. Downloaded the CentOS Apache zip. This includes gd_bundle .crt hereismysite.crt blahblah.pem Now,the folder that currently has the…
2
votes
2 answers

TLS v1.3 error with certain endpoints - Description: Illegal Parameter (47)

I am working with IBM on trying to find the cause for some handshake errors we are receiving randomly when connecting with certain endpoints. This is happening on an IBM i system using the GSKit SSL APIs. The IBM is acting as the client. The error…
bvstone
  • 587
  • 2
  • 6
  • 17
2
votes
2 answers

Deploying NodeJS to godaddy

I have a domain on godaddy, and a Economy Linux Hosting with cPanel. I wanted to host a NodeJS app. Searching the web I learned I needed an application manager that I couldn't find In my Software section on cPanel. I contacted support to learn that…
Majd
  • 328
  • 4
  • 12
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
  • 875
  • 2
  • 15
  • 24
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
18 19