@@ -4,7 +4,6 @@ All URIs are relative to *http://localhost*
4
4
5
5
Method | HTTP request | Description
6
6
------------- | ------------- | -------------
7
- [ ** add_user_request_support_user_requests_post** ] ( EXTERNALApi.md#add_user_request_support_user_requests_post ) | ** POST** /support/user-requests | Add User Request
8
7
[ ** create_api_key_credentials_api_key_post** ] ( EXTERNALApi.md#create_api_key_credentials_api_key_post ) | ** POST** /credentials/api-key | Create Api Key
9
8
[ ** create_checkout_payments_checkout_post** ] ( EXTERNALApi.md#create_checkout_payments_checkout_post ) | ** POST** /payments/checkout | Create Checkout
10
9
[ ** create_compute_deployment_deployments_compute_post** ] ( EXTERNALApi.md#create_compute_deployment_deployments_compute_post ) | ** POST** /deployments/compute | Create Compute Deployment
@@ -13,6 +12,7 @@ Method | HTTP request | Description
13
12
[ ** create_inference_deployment_deployments_inference_post** ] ( EXTERNALApi.md#create_inference_deployment_deployments_inference_post ) | ** POST** /deployments/inference | Create Inference Deployment
14
13
[ ** create_rag_deployment_deployments_rag_post** ] ( EXTERNALApi.md#create_rag_deployment_deployments_rag_post ) | ** POST** /deployments/rag | Create Rag Deployment
15
14
[ ** create_setup_payments_setup_checkout_post** ] ( EXTERNALApi.md#create_setup_payments_setup_checkout_post ) | ** POST** /payments/setup_checkout | Create Setup
15
+ [ ** create_support_ticket_support_post** ] ( EXTERNALApi.md#create_support_ticket_support_post ) | ** POST** /support | Create Support Ticket
16
16
[ ** delete_api_key_credentials_api_key_id_delete** ] ( EXTERNALApi.md#delete_api_key_credentials_api_key_id_delete ) | ** DELETE** /credentials/api-key/{id} | Delete Api Key
17
17
[ ** delete_autocharge_preferences_autocharge_preferences_delete** ] ( EXTERNALApi.md#delete_autocharge_preferences_autocharge_preferences_delete ) | ** DELETE** /autocharge/preferences | Delete Autocharge Preferences
18
18
[ ** delete_payment_method_payments_methods_delete** ] ( EXTERNALApi.md#delete_payment_method_payments_methods_delete ) | ** DELETE** /payments/methods | Delete Payment Method
@@ -49,83 +49,6 @@ Method | HTTP request | Description
49
49
[ ** upload_url_file_url_upload_post** ] ( EXTERNALApi.md#upload_url_file_url_upload_post ) | ** POST** /file_url/upload | Upload Url
50
50
51
51
52
- # ** add_user_request_support_user_requests_post**
53
- > object add_user_request_support_user_requests_post(user_support_email_request)
54
-
55
- Add User Request
56
-
57
- ### Example
58
-
59
- * Bearer Authentication (HTTPBearer):
60
-
61
- ``` python
62
- import platform_api_python_client
63
- from platform_api_python_client.models.user_support_email_request import UserSupportEmailRequest
64
- from platform_api_python_client.rest import ApiException
65
- from pprint import pprint
66
-
67
- # Defining the host is optional and defaults to http://localhost
68
- # See configuration.py for a list of all supported configuration parameters.
69
- configuration = platform_api_python_client.Configuration(
70
- host = " http://localhost"
71
- )
72
-
73
- # The client must configure the authentication and authorization parameters
74
- # in accordance with the API server security policy.
75
- # Examples for each auth method are provided below, use the example that
76
- # satisfies your auth use case.
77
-
78
- # Configure Bearer authorization: HTTPBearer
79
- configuration = platform_api_python_client.Configuration(
80
- access_token = os.environ[" BEARER_TOKEN" ]
81
- )
82
-
83
- # Enter a context with an instance of the API client
84
- with platform_api_python_client.ApiClient(configuration) as api_client:
85
- # Create an instance of the API class
86
- api_instance = platform_api_python_client.EXTERNALApi(api_client)
87
- user_support_email_request = platform_api_python_client.UserSupportEmailRequest() # UserSupportEmailRequest |
88
-
89
- try :
90
- # Add User Request
91
- api_response = api_instance.add_user_request_support_user_requests_post(user_support_email_request)
92
- print (" The response of EXTERNALApi->add_user_request_support_user_requests_post:\n " )
93
- pprint(api_response)
94
- except Exception as e:
95
- print (" Exception when calling EXTERNALApi->add_user_request_support_user_requests_post: %s \n " % e)
96
- ```
97
-
98
-
99
-
100
- ### Parameters
101
-
102
-
103
- Name | Type | Description | Notes
104
- ------------- | ------------- | ------------- | -------------
105
- ** user_support_email_request** | [ ** UserSupportEmailRequest** ] ( UserSupportEmailRequest.md ) | |
106
-
107
- ### Return type
108
-
109
- ** object**
110
-
111
- ### Authorization
112
-
113
- [ HTTPBearer] ( ../README.md#HTTPBearer )
114
-
115
- ### HTTP request headers
116
-
117
- - ** Content-Type** : application/json
118
- - ** Accept** : application/json
119
-
120
- ### HTTP response details
121
-
122
- | Status code | Description | Response headers |
123
- | -------------| -------------| ------------------|
124
- ** 200** | Successful Response | - |
125
- ** 422** | Validation Error | - |
126
-
127
- [[ 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 )
128
-
129
52
# ** create_api_key_credentials_api_key_post**
130
53
> APIKeyResponse create_api_key_credentials_api_key_post(api_key_request)
131
54
@@ -750,6 +673,90 @@ Name | Type | Description | Notes
750
673
751
674
[[ 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 )
752
675
676
+ # ** create_support_ticket_support_post**
677
+ > object create_support_ticket_support_post(message, category, priority, upload_file=upload_file)
678
+
679
+ Create Support Ticket
680
+
681
+ ### Example
682
+
683
+ * Bearer Authentication (HTTPBearer):
684
+
685
+ ``` python
686
+ import platform_api_python_client
687
+ from platform_api_python_client.models.ticket_category import TicketCategory
688
+ from platform_api_python_client.models.ticket_priority import TicketPriority
689
+ from platform_api_python_client.rest import ApiException
690
+ from pprint import pprint
691
+
692
+ # Defining the host is optional and defaults to http://localhost
693
+ # See configuration.py for a list of all supported configuration parameters.
694
+ configuration = platform_api_python_client.Configuration(
695
+ host = " http://localhost"
696
+ )
697
+
698
+ # The client must configure the authentication and authorization parameters
699
+ # in accordance with the API server security policy.
700
+ # Examples for each auth method are provided below, use the example that
701
+ # satisfies your auth use case.
702
+
703
+ # Configure Bearer authorization: HTTPBearer
704
+ configuration = platform_api_python_client.Configuration(
705
+ access_token = os.environ[" BEARER_TOKEN" ]
706
+ )
707
+
708
+ # Enter a context with an instance of the API client
709
+ with platform_api_python_client.ApiClient(configuration) as api_client:
710
+ # Create an instance of the API class
711
+ api_instance = platform_api_python_client.EXTERNALApi(api_client)
712
+ message = ' message_example' # str |
713
+ category = platform_api_python_client.TicketCategory() # TicketCategory |
714
+ priority = platform_api_python_client.TicketPriority() # TicketPriority |
715
+ upload_file = None # bytearray | (optional)
716
+
717
+ try :
718
+ # Create Support Ticket
719
+ api_response = api_instance.create_support_ticket_support_post(message, category, priority, upload_file = upload_file)
720
+ print (" The response of EXTERNALApi->create_support_ticket_support_post:\n " )
721
+ pprint(api_response)
722
+ except Exception as e:
723
+ print (" Exception when calling EXTERNALApi->create_support_ticket_support_post: %s \n " % e)
724
+ ```
725
+
726
+
727
+
728
+ ### Parameters
729
+
730
+
731
+ Name | Type | Description | Notes
732
+ ------------- | ------------- | ------------- | -------------
733
+ ** message** | ** str** | |
734
+ ** category** | [ ** TicketCategory** ] ( TicketCategory.md ) | |
735
+ ** priority** | [ ** TicketPriority** ] ( TicketPriority.md ) | |
736
+ ** upload_file** | ** bytearray** | | [ optional]
737
+
738
+ ### Return type
739
+
740
+ ** object**
741
+
742
+ ### Authorization
743
+
744
+ [ HTTPBearer] ( ../README.md#HTTPBearer )
745
+
746
+ ### HTTP request headers
747
+
748
+ - ** Content-Type** : multipart/form-data
749
+ - ** Accept** : application/json
750
+
751
+ ### HTTP response details
752
+
753
+ | Status code | Description | Response headers |
754
+ | -------------| -------------| ------------------|
755
+ ** 200** | Successful Response | - |
756
+ ** 422** | Validation Error | - |
757
+
758
+ [[ 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 )
759
+
753
760
# ** delete_api_key_credentials_api_key_id_delete**
754
761
> object delete_api_key_credentials_api_key_id_delete(id)
755
762
0 commit comments