@@ -9,6 +9,7 @@ Method | HTTP request | Description
9
9
[ ** create_compute_deployment_deployments_compute_post** ] ( EXTERNALApi.md#create_compute_deployment_deployments_compute_post ) | ** POST** /deployments/compute | Create Compute Deployment
10
10
[ ** create_cserve_v2_deployment_deployments_cserve_v2_post** ] ( EXTERNALApi.md#create_cserve_v2_deployment_deployments_cserve_v2_post ) | ** POST** /deployments/cserve_v2 | Create Cserve V2 Deployment
11
11
[ ** create_inference_deployment_deployments_inference_post** ] ( EXTERNALApi.md#create_inference_deployment_deployments_inference_post ) | ** POST** /deployments/inference | Create Inference Deployment
12
+ [ ** create_new_organization_organizations_post** ] ( EXTERNALApi.md#create_new_organization_organizations_post ) | ** POST** /organizations | Create New Organization
12
13
[ ** create_rag_deployment_deployments_rag_post** ] ( EXTERNALApi.md#create_rag_deployment_deployments_rag_post ) | ** POST** /deployments/rag | Create Rag Deployment
13
14
[ ** create_setup_payments_setup_checkout_post** ] ( EXTERNALApi.md#create_setup_payments_setup_checkout_post ) | ** POST** /payments/setup_checkout | Create Setup
14
15
[ ** create_support_ticket_support_post** ] ( EXTERNALApi.md#create_support_ticket_support_post ) | ** POST** /support | Create Support Ticket
@@ -437,6 +438,84 @@ Name | Type | Description | Notes
437
438
438
439
[[ 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 )
439
440
441
+ # ** create_new_organization_organizations_post**
442
+ > CreateOrganizationResponse create_new_organization_organizations_post(create_organization_request)
443
+
444
+ Create New Organization
445
+
446
+ ### Example
447
+
448
+ * Bearer Authentication (HTTPBearer):
449
+
450
+ ``` python
451
+ import platform_api_python_client
452
+ from platform_api_python_client.models.create_organization_request import CreateOrganizationRequest
453
+ from platform_api_python_client.models.create_organization_response import CreateOrganizationResponse
454
+ from platform_api_python_client.rest import ApiException
455
+ from pprint import pprint
456
+
457
+ # Defining the host is optional and defaults to http://localhost
458
+ # See configuration.py for a list of all supported configuration parameters.
459
+ configuration = platform_api_python_client.Configuration(
460
+ host = " http://localhost"
461
+ )
462
+
463
+ # The client must configure the authentication and authorization parameters
464
+ # in accordance with the API server security policy.
465
+ # Examples for each auth method are provided below, use the example that
466
+ # satisfies your auth use case.
467
+
468
+ # Configure Bearer authorization: HTTPBearer
469
+ configuration = platform_api_python_client.Configuration(
470
+ access_token = os.environ[" BEARER_TOKEN" ]
471
+ )
472
+
473
+ # Enter a context with an instance of the API client
474
+ with platform_api_python_client.ApiClient(configuration) as api_client:
475
+ # Create an instance of the API class
476
+ api_instance = platform_api_python_client.EXTERNALApi(api_client)
477
+ create_organization_request = platform_api_python_client.CreateOrganizationRequest() # CreateOrganizationRequest |
478
+
479
+ try :
480
+ # Create New Organization
481
+ api_response = api_instance.create_new_organization_organizations_post(create_organization_request)
482
+ print (" The response of EXTERNALApi->create_new_organization_organizations_post:\n " )
483
+ pprint(api_response)
484
+ except Exception as e:
485
+ print (" Exception when calling EXTERNALApi->create_new_organization_organizations_post: %s \n " % e)
486
+ ```
487
+
488
+
489
+
490
+ ### Parameters
491
+
492
+
493
+ Name | Type | Description | Notes
494
+ ------------- | ------------- | ------------- | -------------
495
+ ** create_organization_request** | [ ** CreateOrganizationRequest** ] ( CreateOrganizationRequest.md ) | |
496
+
497
+ ### Return type
498
+
499
+ [ ** CreateOrganizationResponse** ] ( CreateOrganizationResponse.md )
500
+
501
+ ### Authorization
502
+
503
+ [ HTTPBearer] ( ../README.md#HTTPBearer )
504
+
505
+ ### HTTP request headers
506
+
507
+ - ** Content-Type** : application/json
508
+ - ** Accept** : application/json
509
+
510
+ ### HTTP response details
511
+
512
+ | Status code | Description | Response headers |
513
+ | -------------| -------------| ------------------|
514
+ ** 200** | Successful Response | - |
515
+ ** 422** | Validation Error | - |
516
+
517
+ [[ 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 )
518
+
440
519
# ** create_rag_deployment_deployments_rag_post**
441
520
> CreateRagDeploymentResponse create_rag_deployment_deployments_rag_post(create_rag_deployment_request)
442
521
@@ -2522,7 +2601,7 @@ Name | Type | Description | Notes
2522
2601
[[ 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 )
2523
2602
2524
2603
# ** setup_stripe_customer_payments_setup_post**
2525
- > SetupUserResponse setup_stripe_customer_payments_setup_post()
2604
+ > object setup_stripe_customer_payments_setup_post()
2526
2605
2527
2606
Setup Stripe Customer
2528
2607
@@ -2532,7 +2611,6 @@ Setup Stripe Customer
2532
2611
2533
2612
``` python
2534
2613
import platform_api_python_client
2535
- from platform_api_python_client.models.setup_user_response import SetupUserResponse
2536
2614
from platform_api_python_client.rest import ApiException
2537
2615
from pprint import pprint
2538
2616
@@ -2574,7 +2652,7 @@ This endpoint does not need any parameter.
2574
2652
2575
2653
### Return type
2576
2654
2577
- [ ** SetupUserResponse ** ] ( SetupUserResponse.md )
2655
+ ** object **
2578
2656
2579
2657
### Authorization
2580
2658
0 commit comments