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
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
39
+
40
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
10
+
11
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
@@ -663,6 +665,122 @@ Name | Type | Description | Notes
663
665
664
666
[[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)
This endpoint can only be used to create manual accounts. Creating a manual account will automatically create it under the Manual Institution member. Since a manual account has no credentials tied to the member, the account will never aggregate or include data from a data feed..
674
+
675
+
### Example
676
+
677
+
* Basic Authentication (basicAuth):
678
+
679
+
```python
680
+
import time
681
+
import mx_platform_python
682
+
from mx_platform_python.api import mx_platform_api
683
+
from mx_platform_python.model.account_response_body import AccountResponseBody
684
+
from mx_platform_python.model.account_create_request_body import AccountCreateRequestBody
685
+
from pprint import pprint
686
+
# Defining the host is optional and defaults to https://api.mx.com
687
+
# See configuration.py for a list of all supported configuration parameters.
688
+
configuration = mx_platform_python.Configuration(
689
+
host="https://api.mx.com"
690
+
)
691
+
692
+
# The client must configure the authentication and authorization parameters
693
+
# in accordance with the API server security policy.
694
+
# Examples for each auth method are provided below, use the example that
695
+
# satisfies your auth use case.
696
+
697
+
# Configure HTTP basic authorization: basicAuth
698
+
configuration = mx_platform_python.Configuration(
699
+
username='YOUR_USERNAME',
700
+
password='YOUR_PASSWORD'
701
+
)
702
+
703
+
# Enter a context with an instance of the API client
704
+
with mx_platform_python.ApiClient(configuration) as api_client:
**user_guid** | **str**| The unique id for a `user`. |
760
+
**account_create_request_body** | [**AccountCreateRequestBody**](AccountCreateRequestBody.md)| Manual account object to be created. |
761
+
762
+
### Return type
763
+
764
+
[**AccountResponseBody**](AccountResponseBody.md)
765
+
766
+
### Authorization
767
+
768
+
[basicAuth](../README.md#basicAuth)
769
+
770
+
### HTTP request headers
771
+
772
+
-**Content-Type**: application/json
773
+
-**Accept**: application/vnd.mx.api.v1+json
774
+
775
+
776
+
### HTTP response details
777
+
778
+
| Status code | Description | Response headers |
779
+
|-------------|-------------|------------------|
780
+
**200** | OK | - |
781
+
782
+
[[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)
[[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)
1426
1544
1545
+
# **delete_manual_account**
1546
+
> delete_manual_account(account_guid, user_guid)
1547
+
1548
+
Delete manual account
1549
+
1550
+
This endpoint deletes accounts that were manually created. The API will respond with an empty object and a status of `204 No Content`.
1551
+
1552
+
### Example
1553
+
1554
+
* Basic Authentication (basicAuth):
1555
+
1556
+
```python
1557
+
import time
1558
+
import mx_platform_python
1559
+
from mx_platform_python.api import mx_platform_api
1560
+
from pprint import pprint
1561
+
# Defining the host is optional and defaults to https://api.mx.com
1562
+
# See configuration.py for a list of all supported configuration parameters.
1563
+
configuration = mx_platform_python.Configuration(
1564
+
host="https://api.mx.com"
1565
+
)
1566
+
1567
+
# The client must configure the authentication and authorization parameters
1568
+
# in accordance with the API server security policy.
1569
+
# Examples for each auth method are provided below, use the example that
1570
+
# satisfies your auth use case.
1571
+
1572
+
# Configure HTTP basic authorization: basicAuth
1573
+
configuration = mx_platform_python.Configuration(
1574
+
username='YOUR_USERNAME',
1575
+
password='YOUR_PASSWORD'
1576
+
)
1577
+
1578
+
# Enter a context with an instance of the API client
1579
+
with mx_platform_python.ApiClient(configuration) as api_client:
**account_guid** | **str**| The unique id for an `account`. |
1599
+
**user_guid** | **str**| The unique id for a `user`. |
1600
+
1601
+
### Return type
1602
+
1603
+
void (empty response body)
1604
+
1605
+
### Authorization
1606
+
1607
+
[basicAuth](../README.md#basicAuth)
1608
+
1609
+
### HTTP request headers
1610
+
1611
+
-**Content-Type**: Not defined
1612
+
-**Accept**: Not defined
1613
+
1614
+
1615
+
### HTTP response details
1616
+
1617
+
| Status code | Description | Response headers |
1618
+
|-------------|-------------|------------------|
1619
+
**204** | No content. | - |
1620
+
1621
+
[[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