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
[**list_account_numbers_by_member**](MxPlatformApi.md#list_account_numbers_by_member) | **GET** /users/{user_guid}/members/{member_guid}/account_numbers | List account numbers by member
34
34
[**list_account_owners_by_member**](MxPlatformApi.md#list_account_owners_by_member) | **GET** /users/{user_guid}/members/{member_guid}/account_owners | List account owners by member
35
35
[**list_categories**](MxPlatformApi.md#list_categories) | **GET** /users/{user_guid}/categories | List categories
36
-
[**list_default_categories**](MxPlatformApi.md#list_default_categories) | **GET** /users/{user_guid}/categories/default | List default categories
36
+
[**list_default_categories**](MxPlatformApi.md#list_default_categories) | **GET** /categories/default | List default categories
37
+
[**list_default_categories_by_user**](MxPlatformApi.md#list_default_categories_by_user) | **GET** /users/{user_guid}/categories/default | List default categories by user
37
38
[**list_favorite_institutions**](MxPlatformApi.md#list_favorite_institutions) | **GET** /institutions/favorites | List favorite institutions
38
39
[**list_holdings**](MxPlatformApi.md#list_holdings) | **GET** /users/{user_guid}/holdings | List holdings
39
40
[**list_holdings_by_member**](MxPlatformApi.md#list_holdings_by_member) | **GET** /users/{user_guid}/members/{member_guid}/holdings | List holdings by member
@@ -2579,11 +2581,11 @@ Name | Type | Description | Notes
2579
2581
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
Use this endpoint to read the attributes of a specific user.
2588
+
Use this endpoint to retrieve a list of all the default categories and subcategories offered within the MX Platform API. In other words, each item in the returned list will have its `is_default` field set to `true`. There are currently 119 default categories and subcategories. Both the _list default categories_ and _list default categories by user_ endpoints return the same results. The different routes are provided for convenience.
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
Use this endpoint to retrieve a list of all the default categories and subcategories, scoped by user, offered within the MX Platform API. In other words, each item in the returned list will have its `is_default` field set to `true`. There are currently 119 default categories and subcategories. Both the _list default categories_ and _list default categories by user_ endpoints return the same results. The different routes are provided for convenience.
2670
+
2671
+
### Example
2672
+
2673
+
* Basic Authentication (basicAuth):
2674
+
2675
+
```python
2676
+
import time
2677
+
import mx_platform_python
2678
+
from mx_platform_python.api import mx_platform_api
2679
+
from mx_platform_python.model.categories_response_body import CategoriesResponseBody
2680
+
from pprint import pprint
2681
+
# Defining the host is optional and defaults to https://api.mx.com
2682
+
# See configuration.py for a list of all supported configuration parameters.
2683
+
configuration = mx_platform_python.Configuration(
2684
+
host="https://api.mx.com"
2685
+
)
2686
+
2687
+
# The client must configure the authentication and authorization parameters
2688
+
# in accordance with the API server security policy.
2689
+
# Examples for each auth method are provided below, use the example that
2690
+
# satisfies your auth use case.
2691
+
2692
+
# Configure HTTP basic authorization: basicAuth
2693
+
configuration = mx_platform_python.Configuration(
2694
+
username='YOUR_USERNAME',
2695
+
password='YOUR_PASSWORD'
2696
+
)
2697
+
2698
+
# Enter a context with an instance of the API client
2699
+
with mx_platform_python.ApiClient(configuration) as api_client:
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
0 commit comments