docs/AppUserApi.md in smooch-api-5.16.0 vs docs/AppUserApi.md in smooch-api-5.16.1

- old
+ new

@@ -18,11 +18,11 @@ [**unlink_app_user**](AppUserApi.md#unlink_app_user) | **DELETE** /v1.1/apps/{appId}/appusers/{userId}/channels/{channel} | [**update_app_user**](AppUserApi.md#update_app_user) | **PUT** /v1.1/apps/{appId}/appusers/{userId} | # **delete_app_user** -> delete_app_user(appId, userId, ) +> delete_app_user(appId, userId) Delete specified app user. @@ -50,11 +50,11 @@ userId = "userId_example" # String | Identifies the user. Can be either the smoochId or the userId. begin - api_instance.delete_app_user(appId, userId, ) + api_instance.delete_app_user(appId, userId) rescue SmoochApi::ApiError => e puts "Exception when calling AppUserApi->delete_app_user: #{e}" end ``` @@ -79,11 +79,11 @@ - **Accept**: application/json # **delete_app_user_profile** -> AppUserResponse delete_app_user_profile(appId, userId, ) +> AppUserResponse delete_app_user_profile(appId, userId) Delete specified app user's profile. @@ -111,11 +111,11 @@ userId = "userId_example" # String | Identifies the user. Can be either the smoochId or the userId. begin - result = api_instance.delete_app_user_profile(appId, userId, ) + result = api_instance.delete_app_user_profile(appId, userId) p result rescue SmoochApi::ApiError => e puts "Exception when calling AppUserApi->delete_app_user_profile: #{e}" end ``` @@ -141,11 +141,11 @@ - **Accept**: application/json # **get_app_user** -> AppUserResponse get_app_user(appId, userId, ) +> AppUserResponse get_app_user(appId, userId) Get the specified app user. @@ -173,11 +173,11 @@ userId = "userId_example" # String | Identifies the user. Can be either the smoochId or the userId. begin - result = api_instance.get_app_user(appId, userId, ) + result = api_instance.get_app_user(appId, userId) p result rescue SmoochApi::ApiError => e puts "Exception when calling AppUserApi->get_app_user: #{e}" end ``` @@ -203,11 +203,11 @@ - **Accept**: application/json # **get_app_user_auth_code** -> AuthCodeResponse get_app_user_auth_code(appId, userId, ) +> AuthCodeResponse get_app_user_auth_code(appId, userId) Get an auth code for facilitating a channel transfer @@ -235,11 +235,11 @@ userId = "userId_example" # String | Identifies the user. Can be either the smoochId or the userId. begin - result = api_instance.get_app_user_auth_code(appId, userId, ) + result = api_instance.get_app_user_auth_code(appId, userId) p result rescue SmoochApi::ApiError => e puts "Exception when calling AppUserApi->get_app_user_auth_code: #{e}" end ``` @@ -265,11 +265,11 @@ - **Accept**: application/json # **get_app_user_business_system_ids** -> AppUserBusinessSystemsResponse get_app_user_business_system_ids(appId, userId, ) +> AppUserBusinessSystemsResponse get_app_user_business_system_ids(appId, userId) Get specified app user's business system IDs. @@ -297,11 +297,11 @@ userId = "userId_example" # String | Identifies the user. Can be either the smoochId or the userId. begin - result = api_instance.get_app_user_business_system_ids(appId, userId, ) + result = api_instance.get_app_user_business_system_ids(appId, userId) p result rescue SmoochApi::ApiError => e puts "Exception when calling AppUserApi->get_app_user_business_system_ids: #{e}" end ``` @@ -327,11 +327,11 @@ - **Accept**: application/json # **get_app_user_entity_ids** -> AppUserChannelsResponse get_app_user_entity_ids(appId, userId, ) +> AppUserChannelsResponse get_app_user_entity_ids(appId, userId) Get specified app user's channel entity IDs. @@ -359,10 +359,10 @@ userId = "userId_example" # String | Identifies the user. Can be either the smoochId or the userId. begin - result = api_instance.get_app_user_entity_ids(appId, userId, ) + result = api_instance.get_app_user_entity_ids(appId, userId) p result rescue SmoochApi::ApiError => e puts "Exception when calling AppUserApi->get_app_user_entity_ids: #{e}" end ```