Please end this quick

This commit is contained in:
2026-01-05 22:05:02 +01:00
parent c754e4c17f
commit c6816ebc3b
64 changed files with 5063 additions and 8 deletions

View File

@@ -0,0 +1,73 @@
# board_mate.sms.DefaultApi
All URIs are relative to *https://boardmate_api*
Method | HTTP request | Description
------------- | ------------- | -------------
[**example**](DefaultApi.md#example) | **POST** /sms/send | POST sms/send
# **example**
> str example(body)
POST sms/send
### Example
```python
import time
import os
import board_mate.sms
from board_mate.sms.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 = board_mate.sms.Configuration(
host = "https://boardmate_api"
)
# Enter a context with an instance of the API client
with board_mate.sms.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = board_mate.sms.DefaultApi(api_client)
body = 'body_example' # str |
try:
# POST sms/send
api_response = api_instance.example(body)
print("The response of DefaultApi->example:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling DefaultApi->example: %s\n" % e)
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | **str**| |
### Return type
**str**
### 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]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)