Get user

Returns an user by id, email or member_id.

Request

  • HTTP Verb: GET
  • URI: /user/{id}

Query Parameters

  • id: user identifier. It could be either user id, user email or custom member_id.

Request example

$users = $API->getUser('adrian.perez@wcea.education');

Output Example

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"
)