Is there any way to create/update 'A' type record in Godaddy domain using nodejs?How can I update NodeJS and NPM to the next versions?Is there a way to get version from package.json in nodejs code?jQuery Ajax Get Doesn't Pass Received Data Into Success Function at Internet ExplorerSocket.io cross-domain issue - Origin is not allowed by Access-Control-Allow-OriginJavascript says undefined after reading json server error response sent by cakephpRequest JSONP with text/plain MIME TypeNode js CORS. My webapp has stopped working since I have a domainfastest way to Test 100+ Million DomainsHow to add header to request in Jquery Ajax?GoDaddy DNS API - Building a module with numerous commands

Sets A such that A+A contains the largest set [0,1,..,t]

How would I as a DM create a smart phone-like spell/device my players could use?

Colleagues speaking another language and it impacts work

What are good ways to improve as a writer other than writing courses?

Will a paper be retracted if a flaw in released software code invalidates its central idea?

Short story about a teenager who has his brain replaced with a microchip (Psychological Horror)

What was the first multiprocessor x86 motherboard?

Is the beaming of this score following a vocal practice or it is just outdated and obscuring the beat?

Is it allowed and safe to carry a passenger / non-pilot in the front seat of a small general aviation airplane?

Looking for a new job because of relocation - is it okay to tell the real reason?

Can ads on a page read my password?

Decode a variable-length quantity

Can a PC attack themselves with an unarmed strike?

Why couldn't soldiers sight their own weapons without officers' orders?

Should I take out a personal loan to pay off credit card debt?

Why is there a need to prevent a racist, sexist, or otherwise bigoted vendor from discriminating who they sell to?

WordCloud: do not eliminate duplicates

What are the examples (applications) of the MIPs in which the objective function has nonzero coefficients for only continuous variables?

Is this cheap "air conditioner" able to cool a room?

Capacitors with a "/" on schematic

Where to pee in London?

Premier League simulation

Why use regularization instead of decreasing the model

What can make Linux unresponsive for minutes when browsing certain websites?



Is there any way to create/update 'A' type record in Godaddy domain using nodejs?


How can I update NodeJS and NPM to the next versions?Is there a way to get version from package.json in nodejs code?jQuery Ajax Get Doesn't Pass Received Data Into Success Function at Internet ExplorerSocket.io cross-domain issue - Origin is not allowed by Access-Control-Allow-OriginJavascript says undefined after reading json server error response sent by cakephpRequest JSONP with text/plain MIME TypeNode js CORS. My webapp has stopped working since I have a domainfastest way to Test 100+ Million DomainsHow to add header to request in Jquery Ajax?GoDaddy DNS API - Building a module with numerous commands






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Say for example I have a domain 'example.com'. I want to update 'A' type record like 'test' with some TTL value in order to have the domain 'test.example.com'. How can we do that in node js? Is there any module available? Thanks in advance!



I tried with the following ajax request. But It shows error. Can anyone please help me out?



$.ajax(
type: 'PATCH',
url: 'https://api.ote-godaddy.com/v1/domains/domain/records',
data:
'domain': 'example.com',
'records': [
'type': 'A',
'name': 'test',
'data': '000.59.47.201'
]
,
headers:
'Authorization': 'sso-key key:secret',
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*'
,
success: function(body)
console.log(body);

);









share|improve this question






























    1















    Say for example I have a domain 'example.com'. I want to update 'A' type record like 'test' with some TTL value in order to have the domain 'test.example.com'. How can we do that in node js? Is there any module available? Thanks in advance!



    I tried with the following ajax request. But It shows error. Can anyone please help me out?



    $.ajax(
    type: 'PATCH',
    url: 'https://api.ote-godaddy.com/v1/domains/domain/records',
    data:
    'domain': 'example.com',
    'records': [
    'type': 'A',
    'name': 'test',
    'data': '000.59.47.201'
    ]
    ,
    headers:
    'Authorization': 'sso-key key:secret',
    'Content-Type': 'application/json',
    'Access-Control-Allow-Origin': '*'
    ,
    success: function(body)
    console.log(body);

    );









    share|improve this question


























      1












      1








      1








      Say for example I have a domain 'example.com'. I want to update 'A' type record like 'test' with some TTL value in order to have the domain 'test.example.com'. How can we do that in node js? Is there any module available? Thanks in advance!



      I tried with the following ajax request. But It shows error. Can anyone please help me out?



      $.ajax(
      type: 'PATCH',
      url: 'https://api.ote-godaddy.com/v1/domains/domain/records',
      data:
      'domain': 'example.com',
      'records': [
      'type': 'A',
      'name': 'test',
      'data': '000.59.47.201'
      ]
      ,
      headers:
      'Authorization': 'sso-key key:secret',
      'Content-Type': 'application/json',
      'Access-Control-Allow-Origin': '*'
      ,
      success: function(body)
      console.log(body);

      );









      share|improve this question














      Say for example I have a domain 'example.com'. I want to update 'A' type record like 'test' with some TTL value in order to have the domain 'test.example.com'. How can we do that in node js? Is there any module available? Thanks in advance!



      I tried with the following ajax request. But It shows error. Can anyone please help me out?



      $.ajax(
      type: 'PATCH',
      url: 'https://api.ote-godaddy.com/v1/domains/domain/records',
      data:
      'domain': 'example.com',
      'records': [
      'type': 'A',
      'name': 'test',
      'data': '000.59.47.201'
      ]
      ,
      headers:
      'Authorization': 'sso-key key:secret',
      'Content-Type': 'application/json',
      'Access-Control-Allow-Origin': '*'
      ,
      success: function(body)
      console.log(body);

      );






      node.js ajax godaddy-api






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 6:16









      Jayabal RajendranJayabal Rajendran

      384 bronze badges




      384 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          2














          I suspect the reason for the ajax error you are getting might because of API keys. In GoDaddy two environments are available called ote and production.
          For the ajax API call you will receive an error when you are trying to use ote environment keys to production keys and vice-versa.



          Also, there is an npm module available for your case. Here is the link for that module
          https://www.npmjs.com/package/godaddy-dns






          share|improve this answer

























          • Excellent Akil. It worked. You saved my day. Much Appreciated

            – Jayabal Rajendran
            Mar 27 at 7:28










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55370909%2fis-there-any-way-to-create-update-a-type-record-in-godaddy-domain-using-nodejs%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          I suspect the reason for the ajax error you are getting might because of API keys. In GoDaddy two environments are available called ote and production.
          For the ajax API call you will receive an error when you are trying to use ote environment keys to production keys and vice-versa.



          Also, there is an npm module available for your case. Here is the link for that module
          https://www.npmjs.com/package/godaddy-dns






          share|improve this answer

























          • Excellent Akil. It worked. You saved my day. Much Appreciated

            – Jayabal Rajendran
            Mar 27 at 7:28















          2














          I suspect the reason for the ajax error you are getting might because of API keys. In GoDaddy two environments are available called ote and production.
          For the ajax API call you will receive an error when you are trying to use ote environment keys to production keys and vice-versa.



          Also, there is an npm module available for your case. Here is the link for that module
          https://www.npmjs.com/package/godaddy-dns






          share|improve this answer

























          • Excellent Akil. It worked. You saved my day. Much Appreciated

            – Jayabal Rajendran
            Mar 27 at 7:28













          2












          2








          2







          I suspect the reason for the ajax error you are getting might because of API keys. In GoDaddy two environments are available called ote and production.
          For the ajax API call you will receive an error when you are trying to use ote environment keys to production keys and vice-versa.



          Also, there is an npm module available for your case. Here is the link for that module
          https://www.npmjs.com/package/godaddy-dns






          share|improve this answer













          I suspect the reason for the ajax error you are getting might because of API keys. In GoDaddy two environments are available called ote and production.
          For the ajax API call you will receive an error when you are trying to use ote environment keys to production keys and vice-versa.



          Also, there is an npm module available for your case. Here is the link for that module
          https://www.npmjs.com/package/godaddy-dns







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 27 at 6:48









          Akhil KAkhil K

          361 bronze badge




          361 bronze badge















          • Excellent Akil. It worked. You saved my day. Much Appreciated

            – Jayabal Rajendran
            Mar 27 at 7:28

















          • Excellent Akil. It worked. You saved my day. Much Appreciated

            – Jayabal Rajendran
            Mar 27 at 7:28
















          Excellent Akil. It worked. You saved my day. Much Appreciated

          – Jayabal Rajendran
          Mar 27 at 7:28





          Excellent Akil. It worked. You saved my day. Much Appreciated

          – Jayabal Rajendran
          Mar 27 at 7:28








          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55370909%2fis-there-any-way-to-create-update-a-type-record-in-godaddy-domain-using-nodejs%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript