2.0 KiB
2.0 KiB
openapi_client.DefaultApi
All URIs are relative to https://boardmate_api
| Method | HTTP request | Description |
|---|---|---|
| create | POST /client/create | POST client/create |
create
ResponseBodyString create(client_dto)
POST client/create
Example
import time
import os
import openapi_client
from openapi_client.models.client_dto import ClientDto
from openapi_client.models.response_body_string import ResponseBodyString
from openapi_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://boardmate_api
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "https://boardmate_api"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = openapi_client.DefaultApi(api_client)
client_dto = openapi_client.ClientDto() # ClientDto |
try:
# POST client/create
api_response = api_instance.create(client_dto)
print("The response of DefaultApi->create:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling DefaultApi->create: %s\n" % e)
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| client_dto | ClientDto |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: /
HTTP response details
| Status code | Description | Response headers |
|---|---|---|
| 200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]