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
**member_guid** | **str**| The unique id for a `member`. |
174
176
**user_guid** | **str**| The unique id for a `user`. |
177
+
**include_holdings** | **bool**| When set to `false`, the aggregation will not gather holdings data. Defaults to `true`. | [optional]
178
+
**include_transactions** | **bool**| When set to `false`, the aggregation will not gather transactions data. Defaults to `true`. | [optional]
def aggregate_member(self, member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], **kwargs) -> MemberResponseBody: # noqa: E501
120
+
def aggregate_member(self, member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], include_holdings : Annotated[Optional[StrictBool], Field(description="When set to `false`, the aggregation will not gather holdings data. Defaults to `true`.")] = None, include_transactions : Annotated[Optional[StrictBool], Field(description="When set to `false`, the aggregation will not gather transactions data. Defaults to `true`.")] = None, **kwargs) -> MemberResponseBody: # noqa: E501
121
121
"""Aggregate member # noqa: E501
122
122
123
123
Calling this endpoint initiates an aggregation event for the member. This brings in the latest account and transaction data from the connected institution. If this data has recently been updated, MX may not initiate an aggregation event. # noqa: E501
124
124
This method makes a synchronous HTTP request by default. To make an
message = "Error! Please call the aggregate_member_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
def aggregate_member_with_http_info(self, member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], **kwargs) -> ApiResponse: # noqa: E501
156
+
def aggregate_member_with_http_info(self, member_guid : Annotated[StrictStr, Field(..., description="The unique id for a `member`.")], user_guid : Annotated[StrictStr, Field(..., description="The unique id for a `user`.")], include_holdings : Annotated[Optional[StrictBool], Field(description="When set to `false`, the aggregation will not gather holdings data. Defaults to `true`.")] = None, include_transactions : Annotated[Optional[StrictBool], Field(description="When set to `false`, the aggregation will not gather transactions data. Defaults to `true`.")] = None, **kwargs) -> ApiResponse: # noqa: E501
153
157
"""Aggregate member # noqa: E501
154
158
155
159
Calling this endpoint initiates an aggregation event for the member. This brings in the latest account and transaction data from the connected institution. If this data has recently been updated, MX may not initiate an aggregation event. # noqa: E501
156
160
This method makes a synchronous HTTP request by default. To make an
0 commit comments