• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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