Update the Registrar Lock of a Domain
This command is used to update the lock state under your account.
CALL
POSTÂ - /domains/{domain}/lock
Request Parameters
Name | Type | Required? | Description |
---|---|---|---|
domain | text | Yes | Domain name |
lockstatus | text | Yes | lock status |
Sample Request
endpoint ="https://www.whogohost.com/host/modules/addons/DomainsReseller/api/index.php"; Â Â ] ]; $headers = [ Â Â Â Â "username: email@example.com", Â Â Â Â "token: ". base64_encode(hash_hmac("sha256", "1234567890QWERTYUIOPASDFGHJKLZXCVBNM", "email@example.com:".gmdate("y-m-d H"))) ]; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, "{$endpoint}{$action}"); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($params)); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($curl); curl_close($curl); |