docs/IdentityApi.md in atrium-ruby-2.4.0 vs docs/IdentityApi.md in atrium-ruby-2.5.0
- old
+ new
@@ -5,11 +5,11 @@
[**identify_member**](IdentityApi.md#identify_member) | **POST** /users/{user_guid}/members/{member_guid}/identify | Identify
[**list_account_owners**](IdentityApi.md#list_account_owners) | **GET** /users/{user_guid}/members/{member_guid}/account_owners | List member account owners
# **identify_member**
-> MemberResponseBody identify_member(member_guid, user_guid)
+> MemberResponseBody identify_member(member_guid, user_guid, )
Identify
The identify endpoint begins an identification process for an already-existing member.
@@ -23,11 +23,11 @@
member_guid = "MBR-123" # String | The unique identifier for a `member`.
user_guid = "USR-123" # String | The unique identifier for a `user`.
begin
#Identify
- response = client.identity.identify_member(member_guid, user_guid)
+ response = client.identity.identify_member(member_guid, user_guid, )
p response
rescue Atrium::ApiError => e
puts "Exception when calling IdentityApi->identify_member: #{e}"
end
```
@@ -42,11 +42,11 @@
### Return type
[**MemberResponseBody**](MemberResponseBody.md)
# **list_account_owners**
-> AccountOwnersResponseBody list_account_owners(member_guid, user_guid)
+> AccountOwnersResponseBody list_account_owners(member_guid, user_guid, )
List member account owners
This endpoint returns an array with information about every account associated with a particular member.
@@ -60,10 +60,10 @@
member_guid = "MBR-123" # String | The unique identifier for a `member`.
user_guid = "USR-123" # String | The unique identifier for a `user`.
begin
#List member account owners
- response = client.identity.list_account_owners(member_guid, user_guid)
+ response = client.identity.list_account_owners(member_guid, user_guid, )
p response
rescue Atrium::ApiError => e
puts "Exception when calling IdentityApi->list_account_owners: #{e}"
end
```