• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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