Application Programming Interface

Set Server Custom Info


Description:

This function enables you to set a server custom_info.

URLs:
  • Sandbox URL: https://node.co.id/api-sandbox/v1/set_server_custom_info
  • Real API URL: https://node.co.id/api/v1/set_server_custom_info
Request Parameters:
Parameter Required Type Max Length Description
server_id Yes String 50 characters The ID of server you want to change its label.
custom_info_1 No String 50 characters Your server custom info 1
custom_info_2 No String 50 characters Your server custom info 2
custom_info_3 No String 50 characters Your server custom info 3
JSON Response:
    
        
{
    "code"    : "OK",
    "message" : "The server custom info has been set.",
    "data"    : {
        "server_id"    : "12345",
        "custom_info_1" : "Cust-0021",
        "custom_info_2" : "mypackage-x",
        "custom_info_3" : ""
    }
}
    
XML Response:
    
        
<?xml version="1.0" encoding="utf-8"?>
<code>OK</code>
<message>The server custom info has been set.</message>
<data>
    <server_id>12345</server_id>
    <custom_info_1>Cust-0021</custom_info_1>
    <custom_info_2>mypackage-x</custom_info_2>
    <custom_info_3></custom_info_3>
</data>
    
PHP Example:
    
        
<?php
$url      = "https://node.co.id/api-sandbox/v1/set_server_custom_info";
//$url    = "https://node.co.id/api/v1/set_server_custom_info";
$user_id  = "12312";
$API_key  = "hasdh6ghvhgFDa454565jasdbNBS";
$random   = rand(10000,99999).uniqid().rand(100000,999999);
$checksum = sha1(sha1(sha1($user_id.$API_key.$random)));
$data = array(
    "user_id"       => $user_id,
    "random"        => $random,
    "format"        => "json",
    "checksum"      => $checksum,
    "server_id"     => "12345",
    "custom_info_1" => "Cust-0021",
    "custom_info_2" => "mypackage-x"
);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$output = curl_exec($ch);
$curl_error = curl_errno($ch);
curl_close($ch);
if ($curl_error){
    echo "Unable to connect to API Server.";
} else {
    $outputArray = json_decode($output,true);
    if (!$outputArray){
        echo "Invalid JSON Format";
    } else {
        if ($outputArray["code"] == "OK"){
            print_r($outputArray);
            // Do what you want to do here if OK
        } else {
            echo "Error Message: ".$outputArray["message"];
            // Do what you want to do here if not OK
        }
    }
}