@@ -14,7 +14,6 @@ Method | HTTP request | Description
14
14
[ ** create_new_organization_organizations_post** ] ( EXTERNALApi.md#create_new_organization_organizations_post ) | ** POST** /organizations | Create New Organization
15
15
[ ** create_rag_deployment_deployments_rag_post** ] ( EXTERNALApi.md#create_rag_deployment_deployments_rag_post ) | ** POST** /deployments/rag | Create Rag Deployment
16
16
[ ** create_setup_payments_setup_checkout_post** ] ( EXTERNALApi.md#create_setup_payments_setup_checkout_post ) | ** POST** /payments/setup_checkout | Create Setup
17
- [ ** create_support_ticket_support_post** ] ( EXTERNALApi.md#create_support_ticket_support_post ) | ** POST** /support | Create Support Ticket
18
17
[ ** 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
19
18
[ ** delete_autocharge_preferences_autocharge_preferences_delete** ] ( EXTERNALApi.md#delete_autocharge_preferences_autocharge_preferences_delete ) | ** DELETE** /autocharge/preferences | Delete Autocharge Preferences
20
19
[ ** delete_payment_method_payments_methods_delete** ] ( EXTERNALApi.md#delete_payment_method_payments_methods_delete ) | ** DELETE** /payments/methods | Delete Payment Method
@@ -834,90 +833,6 @@ Name | Type | Description | Notes
834
833
835
834
[[ 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 )
836
835
837
- # ** create_support_ticket_support_post**
838
- > object create_support_ticket_support_post(message, category, priority, upload_file=upload_file)
839
-
840
- Create Support Ticket
841
-
842
- ### Example
843
-
844
- * Bearer Authentication (HTTPBearer):
845
-
846
- ``` python
847
- import platform_api_python_client
848
- from platform_api_python_client.models.ticket_category import TicketCategory
849
- from platform_api_python_client.models.ticket_priority import TicketPriority
850
- from platform_api_python_client.rest import ApiException
851
- from pprint import pprint
852
-
853
- # Defining the host is optional and defaults to http://localhost
854
- # See configuration.py for a list of all supported configuration parameters.
855
- configuration = platform_api_python_client.Configuration(
856
- host = " http://localhost"
857
- )
858
-
859
- # The client must configure the authentication and authorization parameters
860
- # in accordance with the API server security policy.
861
- # Examples for each auth method are provided below, use the example that
862
- # satisfies your auth use case.
863
-
864
- # Configure Bearer authorization: HTTPBearer
865
- configuration = platform_api_python_client.Configuration(
866
- access_token = os.environ[" BEARER_TOKEN" ]
867
- )
868
-
869
- # Enter a context with an instance of the API client
870
- with platform_api_python_client.ApiClient(configuration) as api_client:
871
- # Create an instance of the API class
872
- api_instance = platform_api_python_client.EXTERNALApi(api_client)
873
- message = ' message_example' # str |
874
- category = platform_api_python_client.TicketCategory() # TicketCategory |
875
- priority = platform_api_python_client.TicketPriority() # TicketPriority |
876
- upload_file = None # bytearray | (optional)
877
-
878
- try :
879
- # Create Support Ticket
880
- api_response = api_instance.create_support_ticket_support_post(message, category, priority, upload_file = upload_file)
881
- print (" The response of EXTERNALApi->create_support_ticket_support_post:\n " )
882
- pprint(api_response)
883
- except Exception as e:
884
- print (" Exception when calling EXTERNALApi->create_support_ticket_support_post: %s \n " % e)
885
- ```
886
-
887
-
888
-
889
- ### Parameters
890
-
891
-
892
- Name | Type | Description | Notes
893
- ------------- | ------------- | ------------- | -------------
894
- ** message** | ** str** | |
895
- ** category** | [ ** TicketCategory** ] ( TicketCategory.md ) | |
896
- ** priority** | [ ** TicketPriority** ] ( TicketPriority.md ) | |
897
- ** upload_file** | ** bytearray** | | [ optional]
898
-
899
- ### Return type
900
-
901
- ** object**
902
-
903
- ### Authorization
904
-
905
- [ HTTPBearer] ( ../README.md#HTTPBearer )
906
-
907
- ### HTTP request headers
908
-
909
- - ** Content-Type** : multipart/form-data
910
- - ** Accept** : application/json
911
-
912
- ### HTTP response details
913
-
914
- | Status code | Description | Response headers |
915
- | -------------| -------------| ------------------|
916
- ** 200** | Successful Response | - |
917
- ** 422** | Validation Error | - |
918
-
919
- [[ 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 )
920
-
921
836
# ** delete_api_key_credentials_api_key_id_delete**
922
837
> object delete_api_key_credentials_api_key_id_delete(id)
923
838
0 commit comments