Class: Atrium::IdentityApi
- Inherits:
-
Object
- Object
- Atrium::IdentityApi
- Defined in:
- lib/atrium-ruby/api/identity_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#identify_member(member_guid, user_guid, opts = {}) ⇒ MemberResponseBody
Identify The identify endpoint begins an identification process for an already-existing member.
-
#initialize(api_client = ApiClient.default) ⇒ IdentityApi
constructor
A new instance of IdentityApi.
-
#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.
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_client ⇒ Object
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.
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.
35 36 37 38 |
# File 'lib/atrium-ruby/api/identity_api.rb', line 35 def list_account_owners(member_guid, user_guid, opts = {}) data, _status_code, _headers = list_account_owners_with_http_info(member_guid, user_guid, opts) data end |