All URIs are relative to http://api.teke.li:9090
Method | HTTP request | Description |
---|---|---|
create | POST /api/applications | Create creates the given application. |
create_http_integration | POST /api/applications/{integration.application_id}/integrations/http | CreateHTTPIntegration creates a HTTP application-integration. |
create_influx_db_integration | POST /api/applications/{integration.application_id}/integrations/influxdb | CreateInfluxDBIntegration create an InfluxDB application-integration. |
create_things_board_integration | POST /api/applications/{integration.application_id}/integrations/thingsboard | CreateThingsBoardIntegration creates a ThingsBoard application-integration. |
delete | DELETE /api/applications/{id} | Delete deletes the given application. |
delete_http_integration | DELETE /api/applications/{application_id}/integrations/http | DeleteIntegration deletes the HTTP application-integration. |
delete_influx_db_integration | DELETE /api/applications/{application_id}/integrations/influxdb | DeleteInfluxDBIntegration deletes the InfluxDB application-integration. |
delete_things_board_integration | DELETE /api/applications/{application_id}/integrations/thingsboard | DeleteThingsBoardIntegration deletes the ThingsBoard application-integration. |
get | GET /api/applications/{id} | Get returns the requested application. |
get_http_integration | GET /api/applications/{application_id}/integrations/http | GetHTTPIntegration returns the HTTP application-integration. |
get_influx_db_integration | GET /api/applications/{application_id}/integrations/influxdb | GetInfluxDBIntegration returns the InfluxDB application-integration. |
get_things_board_integration | GET /api/applications/{application_id}/integrations/thingsboard | GetThingsBoardIntegration returns the ThingsBoard application-integration. |
list | GET /api/applications | List lists the available applications. |
list_integrations | GET /api/applications/{application_id}/integrations | ListIntegrations lists all configured integrations. |
update | PUT /api/applications/{application.id} | Update updates the given application. |
update_http_integration | PUT /api/applications/{integration.application_id}/integrations/http | UpdateHTTPIntegration updates the HTTP application-integration. |
update_influx_db_integration | PUT /api/applications/{integration.application_id}/integrations/influxdb | UpdateInfluxDBIntegration updates the InfluxDB application-integration. |
update_things_board_integration | PUT /api/applications/{integration.application_id}/integrations/thingsboard | UpdateThingsBoardIntegration updates the ThingsBoard application-integration. |
ApiCreateApplicationResponse create(body)
Create creates the given application.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
body = swagger_client.ApiCreateApplicationRequest() # ApiCreateApplicationRequest |
try:
# Create creates the given application.
api_response = api_instance.create(body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->create: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | ApiCreateApplicationRequest |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object create_http_integration(integration_application_id, body)
CreateHTTPIntegration creates a HTTP application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
integration_application_id = 'integration_application_id_example' # str | The id of the application.
body = swagger_client.ApiCreateHTTPIntegrationRequest() # ApiCreateHTTPIntegrationRequest |
try:
# CreateHTTPIntegration creates a HTTP application-integration.
api_response = api_instance.create_http_integration(integration_application_id, body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->create_http_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
integration_application_id | str | The id of the application. | |
body | ApiCreateHTTPIntegrationRequest |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object create_influx_db_integration(integration_application_id, body)
CreateInfluxDBIntegration create an InfluxDB application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
integration_application_id = 'integration_application_id_example' # str | Application ID.
body = swagger_client.ApiCreateInfluxDBIntegrationRequest() # ApiCreateInfluxDBIntegrationRequest |
try:
# CreateInfluxDBIntegration create an InfluxDB application-integration.
api_response = api_instance.create_influx_db_integration(integration_application_id, body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->create_influx_db_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
integration_application_id | str | Application ID. | |
body | ApiCreateInfluxDBIntegrationRequest |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object create_things_board_integration(integration_application_id, body)
CreateThingsBoardIntegration creates a ThingsBoard application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
integration_application_id = 'integration_application_id_example' # str | Application ID.
body = swagger_client.ApiCreateThingsBoardIntegrationRequest() # ApiCreateThingsBoardIntegrationRequest |
try:
# CreateThingsBoardIntegration creates a ThingsBoard application-integration.
api_response = api_instance.create_things_board_integration(integration_application_id, body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->create_things_board_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
integration_application_id | str | Application ID. | |
body | ApiCreateThingsBoardIntegrationRequest |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object delete(id)
Delete deletes the given application.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
id = 'id_example' # str | Application ID.
try:
# Delete deletes the given application.
api_response = api_instance.delete(id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->delete: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str | Application ID. |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object delete_http_integration(application_id)
DeleteIntegration deletes the HTTP application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
application_id = 'application_id_example' # str | The id of the application.
try:
# DeleteIntegration deletes the HTTP application-integration.
api_response = api_instance.delete_http_integration(application_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->delete_http_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
application_id | str | The id of the application. |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object delete_influx_db_integration(application_id)
DeleteInfluxDBIntegration deletes the InfluxDB application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
application_id = 'application_id_example' # str | Application ID.
try:
# DeleteInfluxDBIntegration deletes the InfluxDB application-integration.
api_response = api_instance.delete_influx_db_integration(application_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->delete_influx_db_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
application_id | str | Application ID. |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object delete_things_board_integration(application_id)
DeleteThingsBoardIntegration deletes the ThingsBoard application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
application_id = 'application_id_example' # str | Application ID.
try:
# DeleteThingsBoardIntegration deletes the ThingsBoard application-integration.
api_response = api_instance.delete_things_board_integration(application_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->delete_things_board_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
application_id | str | Application ID. |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ApiGetApplicationResponse get(id)
Get returns the requested application.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
id = 'id_example' # str | Application ID.
try:
# Get returns the requested application.
api_response = api_instance.get(id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str | Application ID. |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ApiGetHTTPIntegrationResponse get_http_integration(application_id)
GetHTTPIntegration returns the HTTP application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
application_id = 'application_id_example' # str | Application ID.
try:
# GetHTTPIntegration returns the HTTP application-integration.
api_response = api_instance.get_http_integration(application_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->get_http_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
application_id | str | Application ID. |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ApiGetInfluxDBIntegrationResponse get_influx_db_integration(application_id)
GetInfluxDBIntegration returns the InfluxDB application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
application_id = 'application_id_example' # str | Application ID.
try:
# GetInfluxDBIntegration returns the InfluxDB application-integration.
api_response = api_instance.get_influx_db_integration(application_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->get_influx_db_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
application_id | str | Application ID. |
ApiGetInfluxDBIntegrationResponse
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ApiGetThingsBoardIntegrationResponse get_things_board_integration(application_id)
GetThingsBoardIntegration returns the ThingsBoard application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
application_id = 'application_id_example' # str | Application ID.
try:
# GetThingsBoardIntegration returns the ThingsBoard application-integration.
api_response = api_instance.get_things_board_integration(application_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->get_things_board_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
application_id | str | Application ID. |
ApiGetThingsBoardIntegrationResponse
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ApiListApplicationResponse list(limit=limit, offset=offset, organization_id=organization_id, search=search)
List lists the available applications.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
limit = 'limit_example' # str | Max number of applications to return in the result-test. (optional)
offset = 'offset_example' # str | Offset in the result-set (for pagination). (optional)
organization_id = 'organization_id_example' # str | ID of the organization to filter on. (optional)
search = 'search_example' # str | Search on name (optional). (optional)
try:
# List lists the available applications.
api_response = api_instance.list(limit=limit, offset=offset, organization_id=organization_id, search=search)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->list: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
limit | str | Max number of applications to return in the result-test. | [optional] |
offset | str | Offset in the result-set (for pagination). | [optional] |
organization_id | str | ID of the organization to filter on. | [optional] |
search | str | Search on name (optional). | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ApiListIntegrationResponse list_integrations(application_id)
ListIntegrations lists all configured integrations.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
application_id = 'application_id_example' # str | The id of the application.
try:
# ListIntegrations lists all configured integrations.
api_response = api_instance.list_integrations(application_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->list_integrations: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
application_id | str | The id of the application. |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object update(application_id, body)
Update updates the given application.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
application_id = 'application_id_example' # str | Application ID. This will be automatically assigned on create.
body = swagger_client.ApiUpdateApplicationRequest() # ApiUpdateApplicationRequest |
try:
# Update updates the given application.
api_response = api_instance.update(application_id, body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->update: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
application_id | str | Application ID. This will be automatically assigned on create. | |
body | ApiUpdateApplicationRequest |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object update_http_integration(integration_application_id, body)
UpdateHTTPIntegration updates the HTTP application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
integration_application_id = 'integration_application_id_example' # str | The id of the application.
body = swagger_client.ApiUpdateHTTPIntegrationRequest() # ApiUpdateHTTPIntegrationRequest |
try:
# UpdateHTTPIntegration updates the HTTP application-integration.
api_response = api_instance.update_http_integration(integration_application_id, body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->update_http_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
integration_application_id | str | The id of the application. | |
body | ApiUpdateHTTPIntegrationRequest |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object update_influx_db_integration(integration_application_id, body)
UpdateInfluxDBIntegration updates the InfluxDB application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
integration_application_id = 'integration_application_id_example' # str | Application ID.
body = swagger_client.ApiUpdateInfluxDBIntegrationRequest() # ApiUpdateInfluxDBIntegrationRequest |
try:
# UpdateInfluxDBIntegration updates the InfluxDB application-integration.
api_response = api_instance.update_influx_db_integration(integration_application_id, body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->update_influx_db_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
integration_application_id | str | Application ID. | |
body | ApiUpdateInfluxDBIntegrationRequest |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object update_things_board_integration(integration_application_id, body)
UpdateThingsBoardIntegration updates the ThingsBoard application-integration.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyHeaderAuth
configuration = swagger_client.Configuration()
configuration.api_key['Grpc-Metadata-Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Grpc-Metadata-Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.ApplicationServiceApi(swagger_client.ApiClient(configuration))
integration_application_id = 'integration_application_id_example' # str | Application ID.
body = swagger_client.ApiUpdateThingsBoardIntegrationRequest() # ApiUpdateThingsBoardIntegrationRequest |
try:
# UpdateThingsBoardIntegration updates the ThingsBoard application-integration.
api_response = api_instance.update_things_board_integration(integration_application_id, body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ApplicationServiceApi->update_things_board_integration: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
integration_application_id | str | Application ID. | |
body | ApiUpdateThingsBoardIntegrationRequest |
object
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]