Returns all users of the authenticated organization.
Request
- HTTP Verb: GET
- URI: /user
Searchable Fields
Example:
Find all users whose:
|
|
member_id | |
name | |
surname | |
company | |
country | |
region | |
city | |
licensing_region |
See Advanced queries for details on how to use Searchable Fields.
Request example
$users = $API->getUser();
Output Example
array( [0] => array( "id" => 1, "email" => "adrian.perez@wcea.education", "member_id" => "m_123", "name" => "Adrián", "surname" => "Pérez", "title" => "Mr", "suffix" => "PhD", "country" => "Spain", "region" => "Andalucía", "licensing_region" => "Andalucía", "city" => "Marbella", "company" => "WCEA" ), [1] => array( "id" => 2, "email" => "tony.montana@wcea.education", "member_id" => "x_345", "name" => "Tony", "surname" => "Montana", "title" => "Dr", "suffix" => "Scarface", "country" => "United states of america", "region" => "Illinois", "licensing_region" => "Illinois", "city" => "Altona", "company" => null ) ... )