Class: Atrium::IdentityApi

Inherits:
Object
  • Object
show all
Defined in:
lib/atrium-ruby/api/identity_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ IdentityApi

Returns a new instance of IdentityApi.



15
16
17
# File 'lib/atrium-ruby/api/identity_api.rb', line 15

def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



13
14
15
# File 'lib/atrium-ruby/api/identity_api.rb', line 13

def api_client
  @api_client
end

Instance Method Details

#identify_member(member_guid, user_guid, opts = {}) ⇒ MemberResponseBody

Identify The identify endpoint begins an identification process for an already-existing member.

Parameters:

  • member_guid

    The unique identifier for a `member`.

  • user_guid

    The unique identifier for a `user`.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



24
25
26
27
# File 'lib/atrium-ruby/api/identity_api.rb', line 24

def identify_member(member_guid, user_guid, opts = {})
  data, _status_code, _headers = identify_member_with_http_info(member_guid, user_guid, opts)
  data
end

#list_account_owners(member_guid, user_guid, opts = {}) ⇒ AccountOwnersResponseBody

List member account owners This endpoint returns an array with information about every account associated with a particular member.

Parameters:

  • member_guid

    The unique identifier for a `member`.

  • user_guid

    The unique identifier for a `user`.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



35
36
37
38
# File 'lib/atrium-ruby/api/identity_api.rb', line 35

def (member_guid, user_guid, opts = {})
  data, _status_code, _headers = (member_guid, user_guid, opts)
  data
end