mx-platform-ruby 0.11.0 → 0.11.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/docs/MxPlatformApi.md +2 -2
- data/lib/mx-platform-ruby/api/mx_platform_api.rb +4 -4
- data/lib/mx-platform-ruby/version.rb +1 -1
- data/openapi/config.yml +1 -1
- data/spec/api/mx_platform_api_spec.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39e6a784d769faf29233eb2754ee6eee88afc0b1143899fea9a06daab4b2748b
|
4
|
+
data.tar.gz: 01b1a01e055eb2c3dde4fea1c85b386fa735129102e316877cfa379802a8849a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63a9fcd4993b000dd6cee0cc614f783eae8986d37605364840e6f73098e7b267b36e0c6c0c07ebcc253939813203c4f7a1e767ae8cb2e73fc28289bee0af69a2
|
7
|
+
data.tar.gz: f178ac8d7f3dd1b7db9870e56e5d074cf28f026b8a6ea252e2aaf27a64394eaf49be1e228ed99b616384ad67d1b76f68bd9fd78633f49cd6ee6f1d56ca55c8c8
|
data/Gemfile.lock
CHANGED
data/docs/MxPlatformApi.md
CHANGED
@@ -830,7 +830,7 @@ end
|
|
830
830
|
|
831
831
|
Create user
|
832
832
|
|
833
|
-
|
833
|
+
Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled.
|
834
834
|
|
835
835
|
### Examples
|
836
836
|
|
@@ -6791,7 +6791,7 @@ end
|
|
6791
6791
|
|
6792
6792
|
Update user
|
6793
6793
|
|
6794
|
-
Use this endpoint to update the attributes of
|
6794
|
+
Use this endpoint to update the attributes of the specified user.
|
6795
6795
|
|
6796
6796
|
### Examples
|
6797
6797
|
|
@@ -768,7 +768,7 @@ module MxPlatformRuby
|
|
768
768
|
end
|
769
769
|
|
770
770
|
# Create user
|
771
|
-
#
|
771
|
+
# Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled.
|
772
772
|
# @param user_create_request_body [UserCreateRequestBody] User object to be created. (None of these parameters are required, but the user object cannot be empty)
|
773
773
|
# @param [Hash] opts the optional parameters
|
774
774
|
# @return [UserResponseBody]
|
@@ -778,7 +778,7 @@ module MxPlatformRuby
|
|
778
778
|
end
|
779
779
|
|
780
780
|
# Create user
|
781
|
-
#
|
781
|
+
# Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled.
|
782
782
|
# @param user_create_request_body [UserCreateRequestBody] User object to be created. (None of these parameters are required, but the user object cannot be empty)
|
783
783
|
# @param [Hash] opts the optional parameters
|
784
784
|
# @return [Array<(UserResponseBody, Integer, Hash)>] UserResponseBody data, response status code and response headers
|
@@ -6533,7 +6533,7 @@ module MxPlatformRuby
|
|
6533
6533
|
end
|
6534
6534
|
|
6535
6535
|
# Update user
|
6536
|
-
# Use this endpoint to update the attributes of
|
6536
|
+
# Use this endpoint to update the attributes of the specified user.
|
6537
6537
|
# @param user_guid [String] The unique id for a `user`.
|
6538
6538
|
# @param user_update_request_body [UserUpdateRequestBody] User object to be updated (None of these parameters are required, but the user object cannot be empty.)
|
6539
6539
|
# @param [Hash] opts the optional parameters
|
@@ -6544,7 +6544,7 @@ module MxPlatformRuby
|
|
6544
6544
|
end
|
6545
6545
|
|
6546
6546
|
# Update user
|
6547
|
-
# Use this endpoint to update the attributes of
|
6547
|
+
# Use this endpoint to update the attributes of the specified user.
|
6548
6548
|
# @param user_guid [String] The unique id for a `user`.
|
6549
6549
|
# @param user_update_request_body [UserUpdateRequestBody] User object to be updated (None of these parameters are required, but the user object cannot be empty.)
|
6550
6550
|
# @param [Hash] opts the optional parameters
|
data/openapi/config.yml
CHANGED
@@ -167,7 +167,7 @@ describe 'MxPlatformApi' do
|
|
167
167
|
|
168
168
|
# unit tests for create_user
|
169
169
|
# Create user
|
170
|
-
#
|
170
|
+
# Use this endpoint to create a new user. The API will respond with the newly-created user object if successful. Disabling a user means that accounts and transactions associated with it will not be updated in the background by MX. It will also restrict access to that user’s data until they are no longer disabled.
|
171
171
|
# @param user_create_request_body User object to be created. (None of these parameters are required, but the user object cannot be empty)
|
172
172
|
# @param [Hash] opts the optional parameters
|
173
173
|
# @return [UserResponseBody]
|
@@ -1280,7 +1280,7 @@ describe 'MxPlatformApi' do
|
|
1280
1280
|
|
1281
1281
|
# unit tests for update_user
|
1282
1282
|
# Update user
|
1283
|
-
# Use this endpoint to update the attributes of
|
1283
|
+
# Use this endpoint to update the attributes of the specified user.
|
1284
1284
|
# @param user_guid The unique id for a `user`.
|
1285
1285
|
# @param user_update_request_body User object to be updated (None of these parameters are required, but the user object cannot be empty.)
|
1286
1286
|
# @param [Hash] opts the optional parameters
|