test.php 263 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 <?php // apiCallSample.php require 'RestClient.php'; $client = new RestClient('http://localhost/mymailadmin/public/', '', ''); $response = $client->get('user'); //return the list of objects {{id:1, username:'Jack'}, {id:2, username:'Nick'}} print_r($response);