You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/MxPlatformApi.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7538,7 +7538,7 @@ Name | Type | Description | Notes
7538
7538
7539
7539
Update account by member
7540
7540
7541
-
This endpoint allows you to update certain attributes of an `account` resource.
7541
+
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`.
7542
7542
7543
7543
### Example
7544
7544
@@ -7576,7 +7576,7 @@ with mx_platform_python.ApiClient(configuration) as api_client:
7576
7576
account_guid ='ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1'# str | The unique id for an `account`.
7577
7577
member_guid ='MBR-7c6f361b-e582-15b6-60c0-358f12466b4b'# str | The unique id for a `member`.
7578
7578
user_guid ='USR-fa7537f3-48aa-a683-a02a-b18940482f54'# str | The unique id for a `user`.
7579
-
account_update_request_body = mx_platform_python.AccountUpdateRequestBody() # AccountUpdateRequestBody | Account object to be created with optional parameters (is_hidden)
@@ -7596,7 +7596,7 @@ Name | Type | Description | Notes
7596
7596
**account_guid** | **str**| The unique id for an `account`. |
7597
7597
**member_guid** | **str**| The unique id for a `member`. |
7598
7598
**user_guid** | **str**| The unique id for a `user`. |
7599
-
**account_update_request_body** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md)| Account object to be created with optional parameters (is_hidden) |
Copy file name to clipboardExpand all lines: mx_platform_python/api/mx_platform_api.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -14261,10 +14261,10 @@ def resume_aggregation_with_http_info(self, member_guid : Annotated[StrictStr, F
14261
14261
_request_auth=_params.get('_request_auth'))
14262
14262
14263
14263
@validate_arguments
14264
-
def update_account_by_member(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : Annotated[AccountUpdateRequestBody, Field(..., description="Account object to be created with optional parameters (is_hidden)")], **kwargs) -> AccountResponseBody: # noqa: E501
14264
+
def update_account_by_member(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : AccountUpdateRequestBody, **kwargs) -> AccountResponseBody: # noqa: E501
14265
14265
"""Update account by member # noqa: E501
14266
14266
14267
-
This endpoint allows you to update certain attributes of an `account` resource. # noqa: E501
14267
+
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`. # noqa: E501
14268
14268
This method makes a synchronous HTTP request by default. To make an
def update_account_by_member_with_http_info(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : Annotated[AccountUpdateRequestBody, Field(..., description="Account object to be created with optional parameters (is_hidden)")], **kwargs) -> ApiResponse: # noqa: E501
14300
+
def update_account_by_member_with_http_info(self, account_guid : Annotated[StrictStr, Field(..., description="The unique id for an `account`.")], member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], account_update_request_body : AccountUpdateRequestBody, **kwargs) -> ApiResponse: # noqa: E501
14301
14301
"""Update account by member # noqa: E501
14302
14302
14303
-
This endpoint allows you to update certain attributes of an `account` resource. # noqa: E501
14303
+
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`. # noqa: E501
14304
14304
This method makes a synchronous HTTP request by default. To make an
0 commit comments