Get User Details

  • GET /api/users/<user_uuid>/ - Get details about a specific user.

    This endpoint retrieves detailed information about a specific user, including their username, full name, email address, and other relevant attributes. You'll need the user_uuid of the user, which you can obtain from the "List Users" endpoint (9.1.1).

    Request Example:

    GET [https://api.wayscloud.services/api/users/user_uuid/]
    Authorization: Token <your_api_token>

Response Example:

{
"uuid": "user_uuid",
"username": "user1",
"full_name": "John Doe",
"email": "john.doe@example.com",
"is_active": true,
"is_staff": false,
"is_support": false,
//... other fields...
}