User Management

Retrieve user by id

Retrieve the information of the user with the matching user ID.

get/users/{id}

Path parameters

idstring uuid required

UUID of user

Response

User Found

idstring uuid required

Unique identifier for the given user.

namestring required
emailstring email required

Example response

{
  "id": "7ea85f9e-0c5f-450c-9b6d-3cb7a42f5242",
  "name": "Sally Smith",
  "email": "sally.smith@example.com"
}

Changes