You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
2.2 KiB
Markdown
96 lines
2.2 KiB
Markdown
# swagger_client.DisziplinApi
|
|
|
|
All URIs are relative to */*
|
|
|
|
Method | HTTP request | Description
|
|
------------- | ------------- | -------------
|
|
[**get_disziplin**](DisziplinApi.md#get_disziplin) | **GET** /disziplinen/{id} |
|
|
[**get_disziplinen**](DisziplinApi.md#get_disziplinen) | **GET** /disziplinen |
|
|
|
|
# **get_disziplin**
|
|
> Disziplin get_disziplin(id)
|
|
|
|
|
|
|
|
### Example
|
|
```python
|
|
from __future__ import print_function
|
|
import time
|
|
import swagger_client
|
|
from swagger_client.rest import ApiException
|
|
from pprint import pprint
|
|
|
|
# create an instance of the API class
|
|
api_instance = swagger_client.DisziplinApi()
|
|
id = 56 # int |
|
|
|
|
try:
|
|
api_response = api_instance.get_disziplin(id)
|
|
pprint(api_response)
|
|
except ApiException as e:
|
|
print("Exception when calling DisziplinApi->get_disziplin: %s\n" % e)
|
|
```
|
|
|
|
### Parameters
|
|
|
|
Name | Type | Description | Notes
|
|
------------- | ------------- | ------------- | -------------
|
|
**id** | **int**| |
|
|
|
|
### Return type
|
|
|
|
[**Disziplin**](Disziplin.md)
|
|
|
|
### Authorization
|
|
|
|
No authorization required
|
|
|
|
### HTTP request headers
|
|
|
|
- **Content-Type**: Not defined
|
|
- **Accept**: application/json
|
|
|
|
[[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)
|
|
|
|
# **get_disziplinen**
|
|
> DisziplinArray get_disziplinen()
|
|
|
|
|
|
|
|
### Example
|
|
```python
|
|
from __future__ import print_function
|
|
import time
|
|
import swagger_client
|
|
from swagger_client.rest import ApiException
|
|
from pprint import pprint
|
|
|
|
# create an instance of the API class
|
|
api_instance = swagger_client.DisziplinApi()
|
|
|
|
try:
|
|
api_response = api_instance.get_disziplinen()
|
|
pprint(api_response)
|
|
except ApiException as e:
|
|
print("Exception when calling DisziplinApi->get_disziplinen: %s\n" % e)
|
|
```
|
|
|
|
### Parameters
|
|
This endpoint does not need any parameter.
|
|
|
|
### Return type
|
|
|
|
[**DisziplinArray**](DisziplinArray.md)
|
|
|
|
### Authorization
|
|
|
|
No authorization required
|
|
|
|
### HTTP request headers
|
|
|
|
- **Content-Type**: Not defined
|
|
- **Accept**: application/json
|
|
|
|
[[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)
|
|
|