Skip to content

Latest commit

 

History

History
81 lines (53 loc) · 2.75 KB

TenantsTenantProviderVerifyApi.md

File metadata and controls

81 lines (53 loc) · 2.75 KB

TenantsTenantProviderVerifyApi

All URIs are relative to http://localhost

Method Description
verify_tenant_cur_bucket Verify Tenant Cur Bucket

verify_tenant_cur_bucket

ResponseTenantVerifyCurBucketResponse verify_tenant_cur_bucket(tenant_id, tenant_verify_cur_bucket_api_request)

Verify Tenant Cur Bucket

An API endpoint that verifies the tenant cur bucket.

Example

import onelens_backend_client
from onelens_backend_client.models.response_tenant_verify_cur_bucket_response import ResponseTenantVerifyCurBucketResponse
from onelens_backend_client.models.tenant_verify_cur_bucket_api_request import TenantVerifyCurBucketAPIRequest
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.TenantsTenantProviderVerifyApi(api_client)
    tenant_id = 'tenant_id_example' # str | 
    tenant_verify_cur_bucket_api_request = onelens_backend_client.TenantVerifyCurBucketAPIRequest() # TenantVerifyCurBucketAPIRequest | 

    try:
        # Verify Tenant Cur Bucket
        api_response = api_instance.verify_tenant_cur_bucket(tenant_id, tenant_verify_cur_bucket_api_request)
        print("The response of TenantsTenantProviderVerifyApi->verify_tenant_cur_bucket:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling TenantsTenantProviderVerifyApi->verify_tenant_cur_bucket: %s\n" % e)

Parameters

Name Type Description Notes
tenant_id str
tenant_verify_cur_bucket_api_request TenantVerifyCurBucketAPIRequest

Return type

ResponseTenantVerifyCurBucketResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

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]