• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved Is there any way to change DNS via REST API?

perrier

New Pleskian
Hi,
I was trying to see if there is a way to automatically change a domain's DNS address via REST API but i didnt see any.
As plesk, are you planning on adding some functions to change more detailed settings of a domain?
If yes, is there an estimated time to its release?
Thank you in advance.
 
REST API has the ability to call CLI utilities using CLI gate. The full list of supported utilities can be found using following request:

Code:
# curl -k -u admin:password -X GET "https://localhost:8443/api/v2/cli/commands/"

As you can see there is 'dns' and 'server_dns' Plesk utilities:

Code:
# curl -k -u admin:password -X GET "https://localhost:8443/api/v2/cli/commands/" | grep dns
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  1493    0  1493    0     0  10365      0 --:--:-- --:--:-- --:--:-- 10440
    "dns",
    "server_dns",

So, you can use these utilities for your purpose in REST API request. More details and examples you can find here How to manage Plesk via REST API?
 
REST API has the ability to call CLI utilities using CLI gate. The full list of supported utilities can be found using following request:

Code:
# curl -k -u admin:password -X GET "https://localhost:8443/api/v2/cli/commands/"

As you can see there is 'dns' and 'server_dns' Plesk utilities:

Code:
# curl -k -u admin:password -X GET "https://localhost:8443/api/v2/cli/commands/" | grep dns
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  1493    0  1493    0     0  10365      0 --:--:-- --:--:-- --:--:-- 10440
    "dns",
    "server_dns",

So, you can use these utilities for your purpose in REST API request. More details and examples you can find here How to manage Plesk via REST API?
Thank you sir, I appreciate your reply!
 
Back
Top