can you please tell me which database is get updated, so that I can ensure that the request being updated
$handle = curl_init();
$username="username";
$password="password";
$postData ='{"AET" : "ORTHANCC", "Host": "127.0.0.1", "Port": 2002}';
curl_setopt($handle, CURLOPT_URL, $url);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($handle, CURLOPT_USERPWD, "$username:$password");
curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($handle, CURLOPT_CUSTOMREQUEST, "PUT");
curl_setopt($handle, CURLOPT_POSTFIELDS, $postData);
$output = curl_exec($handle);
curl_close($handle);
$json = json_decode($output , true);
print_r($json);