All URIs are relative to http://localhost
Method | Description |
---|---|
create_tenant_embed_apps_links | Creates tenant embed apps links. |
delete_tenant_embed_apps_links | Deletes tenant embed apps links. |
get_all_tenant_embed_apps_links | Retrieves tenant embed apps links. |
get_tenant_embed_apps_link_by_id | Retrieves tenant embed apps links. |
update_tenant_embed_apps_links | Updates tenant embed apps links. |
CreateTenantEmbedAppsLinksResponse create_tenant_embed_apps_links(create_tenant_embed_apps_links_request)
Creates tenant embed apps links.
import onelens_backend_client
from onelens_backend_client.models.create_tenant_embed_apps_links_request import CreateTenantEmbedAppsLinksRequest
from onelens_backend_client.models.create_tenant_embed_apps_links_response import CreateTenantEmbedAppsLinksResponse
from onelens_backend_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = onelens_backend_client.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with onelens_backend_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = onelens_backend_client.TenantEmbedAppsLinksServiceApi(api_client)
create_tenant_embed_apps_links_request = onelens_backend_client.CreateTenantEmbedAppsLinksRequest() # CreateTenantEmbedAppsLinksRequest |
try:
# Creates tenant embed apps links.
api_response = api_instance.create_tenant_embed_apps_links(create_tenant_embed_apps_links_request)
print("The response of TenantEmbedAppsLinksServiceApi->create_tenant_embed_apps_links:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TenantEmbedAppsLinksServiceApi->create_tenant_embed_apps_links: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
create_tenant_embed_apps_links_request | CreateTenantEmbedAppsLinksRequest |
CreateTenantEmbedAppsLinksResponse
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Successful Response | - |
422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object delete_tenant_embed_apps_links(get_tenant_embed_apps_links_request)
Deletes tenant embed apps links.
import onelens_backend_client
from onelens_backend_client.models.get_tenant_embed_apps_links_request import GetTenantEmbedAppsLinksRequest
from onelens_backend_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = onelens_backend_client.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with onelens_backend_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = onelens_backend_client.TenantEmbedAppsLinksServiceApi(api_client)
get_tenant_embed_apps_links_request = onelens_backend_client.GetTenantEmbedAppsLinksRequest() # GetTenantEmbedAppsLinksRequest |
try:
# Deletes tenant embed apps links.
api_response = api_instance.delete_tenant_embed_apps_links(get_tenant_embed_apps_links_request)
print("The response of TenantEmbedAppsLinksServiceApi->delete_tenant_embed_apps_links:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TenantEmbedAppsLinksServiceApi->delete_tenant_embed_apps_links: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
get_tenant_embed_apps_links_request | GetTenantEmbedAppsLinksRequest |
object
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Successful Response | - |
422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GetAllTenantEmbedAppsLinksResponse get_all_tenant_embed_apps_links(get_all_tenant_embed_apps_links_request)
Retrieves tenant embed apps links.
import onelens_backend_client
from onelens_backend_client.models.get_all_tenant_embed_apps_links_request import GetAllTenantEmbedAppsLinksRequest
from onelens_backend_client.models.get_all_tenant_embed_apps_links_response import GetAllTenantEmbedAppsLinksResponse
from onelens_backend_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = onelens_backend_client.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with onelens_backend_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = onelens_backend_client.TenantEmbedAppsLinksServiceApi(api_client)
get_all_tenant_embed_apps_links_request = onelens_backend_client.GetAllTenantEmbedAppsLinksRequest() # GetAllTenantEmbedAppsLinksRequest |
try:
# Retrieves tenant embed apps links.
api_response = api_instance.get_all_tenant_embed_apps_links(get_all_tenant_embed_apps_links_request)
print("The response of TenantEmbedAppsLinksServiceApi->get_all_tenant_embed_apps_links:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TenantEmbedAppsLinksServiceApi->get_all_tenant_embed_apps_links: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
get_all_tenant_embed_apps_links_request | GetAllTenantEmbedAppsLinksRequest |
GetAllTenantEmbedAppsLinksResponse
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Successful Response | - |
422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GetTenantEmbedAppsLinkResponse get_tenant_embed_apps_link_by_id(get_tenant_embed_apps_links_request)
Retrieves tenant embed apps links.
import onelens_backend_client
from onelens_backend_client.models.get_tenant_embed_apps_link_response import GetTenantEmbedAppsLinkResponse
from onelens_backend_client.models.get_tenant_embed_apps_links_request import GetTenantEmbedAppsLinksRequest
from onelens_backend_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = onelens_backend_client.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with onelens_backend_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = onelens_backend_client.TenantEmbedAppsLinksServiceApi(api_client)
get_tenant_embed_apps_links_request = onelens_backend_client.GetTenantEmbedAppsLinksRequest() # GetTenantEmbedAppsLinksRequest |
try:
# Retrieves tenant embed apps links.
api_response = api_instance.get_tenant_embed_apps_link_by_id(get_tenant_embed_apps_links_request)
print("The response of TenantEmbedAppsLinksServiceApi->get_tenant_embed_apps_link_by_id:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TenantEmbedAppsLinksServiceApi->get_tenant_embed_apps_link_by_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
get_tenant_embed_apps_links_request | GetTenantEmbedAppsLinksRequest |
GetTenantEmbedAppsLinkResponse
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Successful Response | - |
422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
UpdateTenantEmbedAppsLinksResponse update_tenant_embed_apps_links(request)
Updates tenant embed apps links.
import onelens_backend_client
from onelens_backend_client.models.update_tenant_embed_apps_links_response import UpdateTenantEmbedAppsLinksResponse
from onelens_backend_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = onelens_backend_client.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with onelens_backend_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = onelens_backend_client.TenantEmbedAppsLinksServiceApi(api_client)
request = 'request_example' # str |
try:
# Updates tenant embed apps links.
api_response = api_instance.update_tenant_embed_apps_links(request)
print("The response of TenantEmbedAppsLinksServiceApi->update_tenant_embed_apps_links:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TenantEmbedAppsLinksServiceApi->update_tenant_embed_apps_links: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
request | str |
UpdateTenantEmbedAppsLinksResponse
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Successful Response | - |
422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]