This method returns a single user.
You will need to use the
required information, and may need to use the
optional information below.
Required Information:
Example 1:
https://rhinosupport.com/API/User/?apiCode=
[apiCode]&id=
[id]
Example 2:
https://rhinosupport.com/API/User/?apiCode=
[apiCode]&emailAddress=
[emailAddress]&showNotes&responseType=json
PHP Curl Example
$request = curl_init('https://billing.rhinosupport.com/API/User/?apiCode=[apiCode]&id=[id]');
curl_setopt($request, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($request);
curl_close($request);
echo $result;
?>