• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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