Class: BrickFTP::RESTfulAPI::GetUser

Inherits:
Object
  • Object
show all
Includes:
Command
Defined in:
lib/brick_ftp/restful_api/get_user.rb

Overview

Show a user

See Also:

Instance Method Summary collapse

Methods included from Command

included, #initialize

Instance Method Details

#call(id) ⇒ BrickFTP::Types::User?

Returns a single user.

Parameters:

  • id (Integer)

    Globally unique identifier of each user. Each user is given an ID automatically upon creation.

Returns:



19
20
21
22
23
24
# File 'lib/brick_ftp/restful_api/get_user.rb', line 19

def call(id)
  res = client.get("/api/rest/v1/users/#{id}.json")
  return nil if !res || res.empty?

  BrickFTP::Types::User.new(**res.symbolize_keys)
end