Class: BrickFTP::RESTfulAPI::GetGroup

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

Overview

Show a group

See Also:

Instance Method Summary collapse

Methods included from Command

included, #initialize

Instance Method Details

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

Returns a single group.

Parameters:

  • id (Integer)

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

Returns:



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

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

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