buy
Edit mx records

Description

Use the following API to edit MX records for a specific domain.

Parameter

Sample code

Please refer to the following sample code for CURL and API to edit an MX record for a specific domain.

NOTE: In API you need to replace the MX_ENTRY_INDEX with your MX entry of domain. You will the get the mx record index in list mx record API. Please click here to get the list MX record In output will get the index of mx entry please refer to the screenshot.

image
<?php
$user = 'root';
$pass = 'PASSWORD';

$host = 'SERVER_IP or HOSTNAME';
$domain = 'DOMAIN'; 

$url = 'https://'.rawurlencode($user).':'.rawurlencode($pass).'@'.$host.':2005/index.php?api=json&act=mxentry&domain='.$domain;

$post = array('edit'=>MX_ENTRY_INDEX, // for example 13
			'priority' => 10, // You can change it to your preference
			'destination'=> 'DESTINATION'			
);

// Set the curl parameters 
$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

if(!empty($post)){
	curl_setopt($ch, CURLOPT_POST, 1);
	curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
}
// Get response from the server. 
$resp = curl_exec($ch);
// print_r($resp);

// The response will hold a string as per the API response method. In this case its PHP Serialize
$res = json_decode($resp, true);

print_r($res);
curl --insecure -d "domain:DOMAIN" -d "edit=MX_ENTRY_INDEX" -d "priority=10" -d "destination=DESTINATION" -u root:PASSWORD -X POST "https://SERVER_IP or ADDRESS:2005/index.php?api=json&act=mxentry"
    Was this page helpful?
    Newsletter Subscription
    Subscribing you to the mailing list