This version of the API docs is depreciated and will be taken offline soon.
Please migrate to the new version as soon as possible to avoid service disruption.
New version can be found at https://docs.wceaapi.org/
Returns an user by id or email.
Request
- HTTP Verb: GET
- URI: /user/{id}
Query Parameters
- id: user identifier. It could be either user id or user email.
Request example
$users = $API->getUser('adrian.perez@wcea.education');
Output Example
array( "id" => 1, "email" => "adrian.perez@wcea.education", "name" => "Adrián", "surname" => "Pérez", "title" => "Mr", "suffix" => "PhD", "country" => "Spain", "region" => "Andalucía", "city" => "Marbella", "company" => "WCEA" )