Metadata-Version: 2.1
Name: terapi-global-client
Version: 1.0.0
Summary: A Python client to easily integrate all Terapi Global services into your application.
Author: Terapi Global
Author-email: integrations@terapi.global
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python
from __future__ import print_function
import time
import client
from client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = client.ApiProxyApi(client.ApiClient(configuration))
x_tenant_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | 
integration_name = 'integration_name_example' # str | 
endpoint = 'endpoint_example' # str | 
body = client.ApiproxyEndpointBody6() # ApiproxyEndpointBody6 |  (optional)

try:
    # 21_997
    api_response = api_instance.api_proxy_endpoint_delete(x_tenant_id, integration_name, endpoint, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiProxyApi->api_proxy_endpoint_delete: %s\n" % e)


# create an instance of the API class
api_instance = client.ApiProxyApi(client.ApiClient(configuration))
integration_name = 'integration_name_example' # str | 
endpoint = 'endpoint_example' # str | 
x_tenant_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | 

try:
    # 21_997
    api_response = api_instance.api_proxy_endpoint_get(integration_name, endpoint, x_tenant_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiProxyApi->api_proxy_endpoint_get: %s\n" % e)


# create an instance of the API class
api_instance = client.ApiProxyApi(client.ApiClient(configuration))
x_tenant_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | 
integration_name = 'integration_name_example' # str | 
endpoint = 'endpoint_example' # str | 
body = client.ApiproxyEndpointBody9() # ApiproxyEndpointBody9 |  (optional)

try:
    # 21_997
    api_response = api_instance.api_proxy_endpoint_patch(x_tenant_id, integration_name, endpoint, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiProxyApi->api_proxy_endpoint_patch: %s\n" % e)


# create an instance of the API class
api_instance = client.ApiProxyApi(client.ApiClient(configuration))
x_tenant_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | 
integration_name = 'integration_name_example' # str | 
endpoint = 'endpoint_example' # str | 
body = client.ApiproxyEndpointBody3() # ApiproxyEndpointBody3 |  (optional)

try:
    # 21_997
    api_response = api_instance.api_proxy_endpoint_post(x_tenant_id, integration_name, endpoint, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiProxyApi->api_proxy_endpoint_post: %s\n" % e)


# create an instance of the API class
api_instance = client.ApiProxyApi(client.ApiClient(configuration))
x_tenant_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str | 
integration_name = 'integration_name_example' # str | 
endpoint = 'endpoint_example' # str | 
body = client.ApiproxyEndpointBody() # ApiproxyEndpointBody |  (optional)

try:
    # 21_997
    api_response = api_instance.api_proxy_endpoint_put(x_tenant_id, integration_name, endpoint, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiProxyApi->api_proxy_endpoint_put: %s\n" % e)


# create an instance of the API class
api_instance = client.ApiProxyApi(client.ApiClient(configuration))
tenant_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # str |  (optional)

try:
    api_response = api_instance.api_proxy_oauth2_challenge_get(tenant_id=tenant_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiProxyApi->api_proxy_oauth2_challenge_get: %s\n" % e)


# create an instance of the API class
api_instance = client.ApiProxyApi(client.ApiClient(configuration))
external_id = 'external_id_example' # str | 

try:
    api_response = api_instance.api_proxy_unified_contacts_external_id_get(external_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiProxyApi->api_proxy_unified_contacts_external_id_get: %s\n" % e)


# create an instance of the API class
api_instance = client.ApiProxyApi(client.ApiClient(configuration))

try:
    api_response = api_instance.api_proxy_unified_contacts_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ApiProxyApi->api_proxy_unified_contacts_get: %s\n" % e)
```

## Documentation for API Endpoints

All URIs are relative to */*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*ApiProxyApi* | [**api_proxy_endpoint_delete**](docs/ApiProxyApi.md#api_proxy_endpoint_delete) | **DELETE** /api-proxy/{endpoint} | 21_997
*ApiProxyApi* | [**api_proxy_endpoint_get**](docs/ApiProxyApi.md#api_proxy_endpoint_get) | **GET** /api-proxy/{endpoint} | 21_997
*ApiProxyApi* | [**api_proxy_endpoint_patch**](docs/ApiProxyApi.md#api_proxy_endpoint_patch) | **PATCH** /api-proxy/{endpoint} | 21_997
*ApiProxyApi* | [**api_proxy_endpoint_post**](docs/ApiProxyApi.md#api_proxy_endpoint_post) | **POST** /api-proxy/{endpoint} | 21_997
*ApiProxyApi* | [**api_proxy_endpoint_put**](docs/ApiProxyApi.md#api_proxy_endpoint_put) | **PUT** /api-proxy/{endpoint} | 21_997
*ApiProxyApi* | [**api_proxy_oauth2_challenge_get**](docs/ApiProxyApi.md#api_proxy_oauth2_challenge_get) | **GET** /api-proxy/oauth2/challenge | 
*ApiProxyApi* | [**api_proxy_unified_contacts_external_id_get**](docs/ApiProxyApi.md#api_proxy_unified_contacts_external_id_get) | **GET** /api-proxy/unified/contacts/{externalId} | 
*ApiProxyApi* | [**api_proxy_unified_contacts_get**](docs/ApiProxyApi.md#api_proxy_unified_contacts_get) | **GET** /api-proxy/unified/contacts | 
*ApplicationApi* | [**application_create_post**](docs/ApplicationApi.md#application_create_post) | **POST** /application/create | 15_999
*ApplicationApi* | [**application_delete_delete**](docs/ApplicationApi.md#application_delete_delete) | **DELETE** /application/delete | 15_997
*ApplicationApi* | [**application_list_get**](docs/ApplicationApi.md#application_list_get) | **GET** /application/list | 15_996
*ApplicationApi* | [**application_update_put**](docs/ApplicationApi.md#application_update_put) | **PUT** /application/update | 15_998
*ApplicationApiKeyApi* | [**application_apikey_generate_post**](docs/ApplicationApiKeyApi.md#application_apikey_generate_post) | **POST** /application-apikey/generate | 16_999
*ApplicationApiKeyApi* | [**application_apikey_get_by_application_id_get**](docs/ApplicationApiKeyApi.md#application_apikey_get_by_application_id_get) | **GET** /application-apikey/get-by-application-id | 16_995
*ApplicationApiKeyApi* | [**application_apikey_revoke_delete**](docs/ApplicationApiKeyApi.md#application_apikey_revoke_delete) | **DELETE** /application-apikey/revoke | 16_998
*ApplicationIntegrationApi* | [**application_integration_add_integration_to_application_post**](docs/ApplicationIntegrationApi.md#application_integration_add_integration_to_application_post) | **POST** /application-integration/add-integration-to-application | 18_999
*ApplicationIntegrationApi* | [**application_integration_application_integration_list_by_application_id_get**](docs/ApplicationIntegrationApi.md#application_integration_application_integration_list_by_application_id_get) | **GET** /application-integration/application-integration-list-by-application-id | 18_997
*AuthApi* | [**auth_authenticate_post**](docs/AuthApi.md#auth_authenticate_post) | **POST** /auth/authenticate | 23_999
*AuthApi* | [**auth_refresh_post**](docs/AuthApi.md#auth_refresh_post) | **POST** /auth/refresh | 23_998
*CategoryApi* | [**category_list_get**](docs/CategoryApi.md#category_list_get) | **GET** /category/list | 19_999
*IntegrationApi* | [**integration_get_get**](docs/IntegrationApi.md#integration_get_get) | **GET** /integration/get | 17_997
*IntegrationApi* | [**integration_list_get**](docs/IntegrationApi.md#integration_list_get) | **GET** /integration/list | 17_999
*StatisticsApi* | [**statistics_user_profile_get**](docs/StatisticsApi.md#statistics_user_profile_get) | **GET** /statistics/user-profile | 14_997
*TenantApi* | [**tenant_decline_tenant_id_get**](docs/TenantApi.md#tenant_decline_tenant_id_get) | **GET** /tenant/decline-tenant/{id} | 20_996
*TenantApi* | [**tenant_invite_tenant_by_application_integration_id_post**](docs/TenantApi.md#tenant_invite_tenant_by_application_integration_id_post) | **POST** /tenant/invite-tenant-by-application-integration-id | 20_998
*TenantApi* | [**tenant_invite_tenant_post**](docs/TenantApi.md#tenant_invite_tenant_post) | **POST** /tenant/invite-tenant | 20_998
*TenantApi* | [**tenant_update_tenant_connection_post**](docs/TenantApi.md#tenant_update_tenant_connection_post) | **POST** /tenant/update-tenant-connection | 20_997
*TenantApi* | [**tenant_user_tenant_list_get**](docs/TenantApi.md#tenant_user_tenant_list_get) | **GET** /tenant/user-tenant-list | 20_999
*UserApi* | [**user_create_or_get_user_profile_post**](docs/UserApi.md#user_create_or_get_user_profile_post) | **POST** /user/create-or-get-user-profile | 14_998

## Documentation For Models

 - [AddIntegrationToApplicationError](docs/AddIntegrationToApplicationError.md)
 - [AddIntegrationToApplicationRequest](docs/AddIntegrationToApplicationRequest.md)
 - [AddIntegrationToApplicationRequestDto](docs/AddIntegrationToApplicationRequestDto.md)
 - [AddIntegrationToApplicationRequestErrorCodes](docs/AddIntegrationToApplicationRequestErrorCodes.md)
 - [AddIntegrationToApplicationResponse](docs/AddIntegrationToApplicationResponse.md)
 - [AllOfAddIntegrationToApplicationErrorCode](docs/AllOfAddIntegrationToApplicationErrorCode.md)
 - [AllOfAddIntegrationToApplicationErrorType](docs/AllOfAddIntegrationToApplicationErrorType.md)
 - [AllOfAddIntegrationToApplicationRequestDto](docs/AllOfAddIntegrationToApplicationRequestDto.md)
 - [AllOfAddIntegrationToApplicationResponseError](docs/AllOfAddIntegrationToApplicationResponseError.md)
 - [AllOfApplicationApiKeyByApplicationIdErrorCode](docs/AllOfApplicationApiKeyByApplicationIdErrorCode.md)
 - [AllOfApplicationApiKeyByApplicationIdErrorType](docs/AllOfApplicationApiKeyByApplicationIdErrorType.md)
 - [AllOfApplicationApiKeyByApplicationIdResponseData](docs/AllOfApplicationApiKeyByApplicationIdResponseData.md)
 - [AllOfApplicationApiKeyByApplicationIdResponseError](docs/AllOfApplicationApiKeyByApplicationIdResponseError.md)
 - [AllOfApplicationIntegrationDtoApplication](docs/AllOfApplicationIntegrationDtoApplication.md)
 - [AllOfApplicationIntegrationDtoIntegration](docs/AllOfApplicationIntegrationDtoIntegration.md)
 - [AllOfApplicationIntegrationListByApplicationIdErrorCode](docs/AllOfApplicationIntegrationListByApplicationIdErrorCode.md)
 - [AllOfApplicationIntegrationListByApplicationIdErrorType](docs/AllOfApplicationIntegrationListByApplicationIdErrorType.md)
 - [AllOfApplicationIntegrationListByApplicationIdResponseData](docs/AllOfApplicationIntegrationListByApplicationIdResponseData.md)
 - [AllOfApplicationIntegrationListByApplicationIdResponseError](docs/AllOfApplicationIntegrationListByApplicationIdResponseError.md)
 - [AllOfCallActionErrorCode](docs/AllOfCallActionErrorCode.md)
 - [AllOfCallActionErrorType](docs/AllOfCallActionErrorType.md)
 - [AllOfCallActionResponseData](docs/AllOfCallActionResponseData.md)
 - [AllOfCallActionResponseError](docs/AllOfCallActionResponseError.md)
 - [AllOfCategoryListErrorCode](docs/AllOfCategoryListErrorCode.md)
 - [AllOfCategoryListErrorType](docs/AllOfCategoryListErrorType.md)
 - [AllOfCategoryListResponseData](docs/AllOfCategoryListResponseData.md)
 - [AllOfCategoryListResponseError](docs/AllOfCategoryListResponseError.md)
 - [AllOfCreateApplicationApiKeyErrorCode](docs/AllOfCreateApplicationApiKeyErrorCode.md)
 - [AllOfCreateApplicationApiKeyErrorType](docs/AllOfCreateApplicationApiKeyErrorType.md)
 - [AllOfCreateApplicationApiKeyRequestDto](docs/AllOfCreateApplicationApiKeyRequestDto.md)
 - [AllOfCreateApplicationApiKeyResponseData](docs/AllOfCreateApplicationApiKeyResponseData.md)
 - [AllOfCreateApplicationApiKeyResponseError](docs/AllOfCreateApplicationApiKeyResponseError.md)
 - [AllOfCreateApplicationErrorCode](docs/AllOfCreateApplicationErrorCode.md)
 - [AllOfCreateApplicationErrorType](docs/AllOfCreateApplicationErrorType.md)
 - [AllOfCreateApplicationRequestDto](docs/AllOfCreateApplicationRequestDto.md)
 - [AllOfCreateApplicationResponseData](docs/AllOfCreateApplicationResponseData.md)
 - [AllOfCreateApplicationResponseError](docs/AllOfCreateApplicationResponseError.md)
 - [AllOfCreateUserProfileErrorCode](docs/AllOfCreateUserProfileErrorCode.md)
 - [AllOfCreateUserProfileErrorType](docs/AllOfCreateUserProfileErrorType.md)
 - [AllOfCreateUserProfileResponseData](docs/AllOfCreateUserProfileResponseData.md)
 - [AllOfCreateUserProfileResponseError](docs/AllOfCreateUserProfileResponseError.md)
 - [AllOfDeclineTenantInvitationErrorCode](docs/AllOfDeclineTenantInvitationErrorCode.md)
 - [AllOfDeclineTenantInvitationErrorType](docs/AllOfDeclineTenantInvitationErrorType.md)
 - [AllOfDeclineTenantInvitationResponseError](docs/AllOfDeclineTenantInvitationResponseError.md)
 - [AllOfDeleteApplicationErrorCode](docs/AllOfDeleteApplicationErrorCode.md)
 - [AllOfDeleteApplicationErrorType](docs/AllOfDeleteApplicationErrorType.md)
 - [AllOfDeleteApplicationResponseError](docs/AllOfDeleteApplicationResponseError.md)
 - [AllOfErrorType](docs/AllOfErrorType.md)
 - [AllOfGetAuthenticationTokenErrorCode](docs/AllOfGetAuthenticationTokenErrorCode.md)
 - [AllOfGetAuthenticationTokenErrorType](docs/AllOfGetAuthenticationTokenErrorType.md)
 - [AllOfGetAuthenticationTokenResponseData](docs/AllOfGetAuthenticationTokenResponseData.md)
 - [AllOfGetAuthenticationTokenResponseError](docs/AllOfGetAuthenticationTokenResponseError.md)
 - [AllOfGetOneIntegrationErrorCode](docs/AllOfGetOneIntegrationErrorCode.md)
 - [AllOfGetOneIntegrationErrorType](docs/AllOfGetOneIntegrationErrorType.md)
 - [AllOfGetOneIntegrationResponseData](docs/AllOfGetOneIntegrationResponseData.md)
 - [AllOfGetOneIntegrationResponseError](docs/AllOfGetOneIntegrationResponseError.md)
 - [AllOfIntegrationDtoReleaseStatus](docs/AllOfIntegrationDtoReleaseStatus.md)
 - [AllOfIntegrationListErrorCode](docs/AllOfIntegrationListErrorCode.md)
 - [AllOfIntegrationListErrorType](docs/AllOfIntegrationListErrorType.md)
 - [AllOfIntegrationListResponseData](docs/AllOfIntegrationListResponseData.md)
 - [AllOfIntegrationListResponseError](docs/AllOfIntegrationListResponseError.md)
 - [AllOfInviteTenantByApplicationIntegrationIdErrorCode](docs/AllOfInviteTenantByApplicationIntegrationIdErrorCode.md)
 - [AllOfInviteTenantByApplicationIntegrationIdErrorType](docs/AllOfInviteTenantByApplicationIntegrationIdErrorType.md)
 - [AllOfInviteTenantByApplicationIntegrationIdRequestDto](docs/AllOfInviteTenantByApplicationIntegrationIdRequestDto.md)
 - [AllOfInviteTenantByApplicationIntegrationIdResponseData](docs/AllOfInviteTenantByApplicationIntegrationIdResponseData.md)
 - [AllOfInviteTenantByApplicationIntegrationIdResponseError](docs/AllOfInviteTenantByApplicationIntegrationIdResponseError.md)
 - [AllOfInviteTenantErrorCode](docs/AllOfInviteTenantErrorCode.md)
 - [AllOfInviteTenantErrorType](docs/AllOfInviteTenantErrorType.md)
 - [AllOfInviteTenantRequestDto](docs/AllOfInviteTenantRequestDto.md)
 - [AllOfInviteTenantResponseData](docs/AllOfInviteTenantResponseData.md)
 - [AllOfInviteTenantResponseError](docs/AllOfInviteTenantResponseError.md)
 - [AllOfOAuth2ChallengeDtoResponseData](docs/AllOfOAuth2ChallengeDtoResponseData.md)
 - [AllOfOAuth2ChallengeDtoResponseError](docs/AllOfOAuth2ChallengeDtoResponseError.md)
 - [AllOfOAuth2ChallengeDtoTokens](docs/AllOfOAuth2ChallengeDtoTokens.md)
 - [AllOfRefreshAuthenticationTokenErrorCode](docs/AllOfRefreshAuthenticationTokenErrorCode.md)
 - [AllOfRefreshAuthenticationTokenErrorType](docs/AllOfRefreshAuthenticationTokenErrorType.md)
 - [AllOfRefreshAuthenticationTokenResponseData](docs/AllOfRefreshAuthenticationTokenResponseData.md)
 - [AllOfRefreshAuthenticationTokenResponseError](docs/AllOfRefreshAuthenticationTokenResponseError.md)
 - [AllOfResponseError](docs/AllOfResponseError.md)
 - [AllOfRevokeApplicationApiKeyErrorCode](docs/AllOfRevokeApplicationApiKeyErrorCode.md)
 - [AllOfRevokeApplicationApiKeyErrorType](docs/AllOfRevokeApplicationApiKeyErrorType.md)
 - [AllOfRevokeApplicationApiKeyResponseError](docs/AllOfRevokeApplicationApiKeyResponseError.md)
 - [AllOfTenantDtoApplicationIntegration](docs/AllOfTenantDtoApplicationIntegration.md)
 - [AllOfTenantDtoInvitationStatus](docs/AllOfTenantDtoInvitationStatus.md)
 - [AllOfUnifiedContactResponseData](docs/AllOfUnifiedContactResponseData.md)
 - [AllOfUnifiedContactResponseError](docs/AllOfUnifiedContactResponseError.md)
 - [AllOfUnifiedContactsListResponseData](docs/AllOfUnifiedContactsListResponseData.md)
 - [AllOfUnifiedContactsListResponseError](docs/AllOfUnifiedContactsListResponseError.md)
 - [AllOfUpdateApplicationErrorCode](docs/AllOfUpdateApplicationErrorCode.md)
 - [AllOfUpdateApplicationErrorType](docs/AllOfUpdateApplicationErrorType.md)
 - [AllOfUpdateApplicationRequestDto](docs/AllOfUpdateApplicationRequestDto.md)
 - [AllOfUpdateApplicationResponseData](docs/AllOfUpdateApplicationResponseData.md)
 - [AllOfUpdateApplicationResponseError](docs/AllOfUpdateApplicationResponseError.md)
 - [AllOfUpdateTenantConnectionErrorCode](docs/AllOfUpdateTenantConnectionErrorCode.md)
 - [AllOfUpdateTenantConnectionErrorType](docs/AllOfUpdateTenantConnectionErrorType.md)
 - [AllOfUpdateTenantConnectionRequestDto](docs/AllOfUpdateTenantConnectionRequestDto.md)
 - [AllOfUpdateTenantConnectionResponseError](docs/AllOfUpdateTenantConnectionResponseError.md)
 - [AllOfUserApplicationListErrorCode](docs/AllOfUserApplicationListErrorCode.md)
 - [AllOfUserApplicationListErrorType](docs/AllOfUserApplicationListErrorType.md)
 - [AllOfUserApplicationListResponseData](docs/AllOfUserApplicationListResponseData.md)
 - [AllOfUserApplicationListResponseError](docs/AllOfUserApplicationListResponseError.md)
 - [AllOfUserProfileStatisticsErrorCode](docs/AllOfUserProfileStatisticsErrorCode.md)
 - [AllOfUserProfileStatisticsErrorType](docs/AllOfUserProfileStatisticsErrorType.md)
 - [AllOfUserProfileStatisticsResponseData](docs/AllOfUserProfileStatisticsResponseData.md)
 - [AllOfUserProfileStatisticsResponseError](docs/AllOfUserProfileStatisticsResponseError.md)
 - [AllOfUserTenantListErrorCode](docs/AllOfUserTenantListErrorCode.md)
 - [AllOfUserTenantListErrorType](docs/AllOfUserTenantListErrorType.md)
 - [AllOfUserTenantListResponseData](docs/AllOfUserTenantListResponseData.md)
 - [AllOfUserTenantListResponseError](docs/AllOfUserTenantListResponseError.md)
 - [ApiproxyEndpointBody](docs/ApiproxyEndpointBody.md)
 - [ApiproxyEndpointBody1](docs/ApiproxyEndpointBody1.md)
 - [ApiproxyEndpointBody10](docs/ApiproxyEndpointBody10.md)
 - [ApiproxyEndpointBody11](docs/ApiproxyEndpointBody11.md)
 - [ApiproxyEndpointBody2](docs/ApiproxyEndpointBody2.md)
 - [ApiproxyEndpointBody3](docs/ApiproxyEndpointBody3.md)
 - [ApiproxyEndpointBody4](docs/ApiproxyEndpointBody4.md)
 - [ApiproxyEndpointBody5](docs/ApiproxyEndpointBody5.md)
 - [ApiproxyEndpointBody6](docs/ApiproxyEndpointBody6.md)
 - [ApiproxyEndpointBody7](docs/ApiproxyEndpointBody7.md)
 - [ApiproxyEndpointBody8](docs/ApiproxyEndpointBody8.md)
 - [ApiproxyEndpointBody9](docs/ApiproxyEndpointBody9.md)
 - [ApplicationApiKeyByApplicationIdError](docs/ApplicationApiKeyByApplicationIdError.md)
 - [ApplicationApiKeyByApplicationIdErrorCodes](docs/ApplicationApiKeyByApplicationIdErrorCodes.md)
 - [ApplicationApiKeyByApplicationIdResponse](docs/ApplicationApiKeyByApplicationIdResponse.md)
 - [ApplicationApiKeyDto](docs/ApplicationApiKeyDto.md)
 - [ApplicationCreateBody](docs/ApplicationCreateBody.md)
 - [ApplicationCreateBody1](docs/ApplicationCreateBody1.md)
 - [ApplicationCreateBody2](docs/ApplicationCreateBody2.md)
 - [ApplicationDto](docs/ApplicationDto.md)
 - [ApplicationIntegrationDto](docs/ApplicationIntegrationDto.md)
 - [ApplicationIntegrationListByApplicationIdError](docs/ApplicationIntegrationListByApplicationIdError.md)
 - [ApplicationIntegrationListByApplicationIdRequestErrorCodes](docs/ApplicationIntegrationListByApplicationIdRequestErrorCodes.md)
 - [ApplicationIntegrationListByApplicationIdResponse](docs/ApplicationIntegrationListByApplicationIdResponse.md)
 - [ApplicationIntegrationListDto](docs/ApplicationIntegrationListDto.md)
 - [ApplicationListDto](docs/ApplicationListDto.md)
 - [ApplicationUpdateBody](docs/ApplicationUpdateBody.md)
 - [ApplicationUpdateBody1](docs/ApplicationUpdateBody1.md)
 - [ApplicationUpdateBody2](docs/ApplicationUpdateBody2.md)
 - [ApplicationapikeyGenerateBody](docs/ApplicationapikeyGenerateBody.md)
 - [ApplicationapikeyGenerateBody1](docs/ApplicationapikeyGenerateBody1.md)
 - [ApplicationapikeyGenerateBody2](docs/ApplicationapikeyGenerateBody2.md)
 - [ApplicationintegrationAddintegrationtoapplicationBody](docs/ApplicationintegrationAddintegrationtoapplicationBody.md)
 - [ApplicationintegrationAddintegrationtoapplicationBody1](docs/ApplicationintegrationAddintegrationtoapplicationBody1.md)
 - [ApplicationintegrationAddintegrationtoapplicationBody2](docs/ApplicationintegrationAddintegrationtoapplicationBody2.md)
 - [CallActionBodyDto](docs/CallActionBodyDto.md)
 - [CallActionDto](docs/CallActionDto.md)
 - [CallActionError](docs/CallActionError.md)
 - [CallActionErrorCodes](docs/CallActionErrorCodes.md)
 - [CallActionResponse](docs/CallActionResponse.md)
 - [CategoryDto](docs/CategoryDto.md)
 - [CategoryListDto](docs/CategoryListDto.md)
 - [CategoryListError](docs/CategoryListError.md)
 - [CategoryListRequestErrorCodes](docs/CategoryListRequestErrorCodes.md)
 - [CategoryListResponse](docs/CategoryListResponse.md)
 - [ClientErrorType](docs/ClientErrorType.md)
 - [CreateApplicationApiKeyError](docs/CreateApplicationApiKeyError.md)
 - [CreateApplicationApiKeyRequest](docs/CreateApplicationApiKeyRequest.md)
 - [CreateApplicationApiKeyRequestDto](docs/CreateApplicationApiKeyRequestDto.md)
 - [CreateApplicationApiKeyRequestErrorCodes](docs/CreateApplicationApiKeyRequestErrorCodes.md)
 - [CreateApplicationApiKeyResponse](docs/CreateApplicationApiKeyResponse.md)
 - [CreateApplicationError](docs/CreateApplicationError.md)
 - [CreateApplicationRequest](docs/CreateApplicationRequest.md)
 - [CreateApplicationRequestDto](docs/CreateApplicationRequestDto.md)
 - [CreateApplicationRequestErrorCodes](docs/CreateApplicationRequestErrorCodes.md)
 - [CreateApplicationResponse](docs/CreateApplicationResponse.md)
 - [CreateUserProfileError](docs/CreateUserProfileError.md)
 - [CreateUserProfileRequestErrorCodes](docs/CreateUserProfileRequestErrorCodes.md)
 - [CreateUserProfileResponse](docs/CreateUserProfileResponse.md)
 - [DeclineTenantInvitationError](docs/DeclineTenantInvitationError.md)
 - [DeclineTenantInvitationRequestErrorCodes](docs/DeclineTenantInvitationRequestErrorCodes.md)
 - [DeclineTenantInvitationResponse](docs/DeclineTenantInvitationResponse.md)
 - [DeleteApplicationError](docs/DeleteApplicationError.md)
 - [DeleteApplicationRequestErrorCodes](docs/DeleteApplicationRequestErrorCodes.md)
 - [DeleteApplicationResponse](docs/DeleteApplicationResponse.md)
 - [Error](docs/Error.md)
 - [GetAuthenticationTokenDto](docs/GetAuthenticationTokenDto.md)
 - [GetAuthenticationTokenError](docs/GetAuthenticationTokenError.md)
 - [GetAuthenticationTokenRequestErrorCodes](docs/GetAuthenticationTokenRequestErrorCodes.md)
 - [GetAuthenticationTokenResponse](docs/GetAuthenticationTokenResponse.md)
 - [GetOneIntegrationError](docs/GetOneIntegrationError.md)
 - [GetOneIntegrationRequestErrorCodes](docs/GetOneIntegrationRequestErrorCodes.md)
 - [GetOneIntegrationResponse](docs/GetOneIntegrationResponse.md)
 - [IntegrationDto](docs/IntegrationDto.md)
 - [IntegrationEndpointDto](docs/IntegrationEndpointDto.md)
 - [IntegrationEventDto](docs/IntegrationEventDto.md)
 - [IntegrationFieldDto](docs/IntegrationFieldDto.md)
 - [IntegrationListDto](docs/IntegrationListDto.md)
 - [IntegrationListError](docs/IntegrationListError.md)
 - [IntegrationListRequestErrorCodes](docs/IntegrationListRequestErrorCodes.md)
 - [IntegrationListResponse](docs/IntegrationListResponse.md)
 - [InvitationStatus](docs/InvitationStatus.md)
 - [InvitationStatus1](docs/InvitationStatus1.md)
 - [InviteTenantByApplicationIntegrationIdError](docs/InviteTenantByApplicationIntegrationIdError.md)
 - [InviteTenantByApplicationIntegrationIdRequest](docs/InviteTenantByApplicationIntegrationIdRequest.md)
 - [InviteTenantByApplicationIntegrationIdRequestDto](docs/InviteTenantByApplicationIntegrationIdRequestDto.md)
 - [InviteTenantByApplicationIntegrationIdResponse](docs/InviteTenantByApplicationIntegrationIdResponse.md)
 - [InviteTenantError](docs/InviteTenantError.md)
 - [InviteTenantRequest](docs/InviteTenantRequest.md)
 - [InviteTenantRequestDto](docs/InviteTenantRequestDto.md)
 - [InviteTenantRequestErrorCodes](docs/InviteTenantRequestErrorCodes.md)
 - [InviteTenantResponse](docs/InviteTenantResponse.md)
 - [OAuth2ChallengeDto](docs/OAuth2ChallengeDto.md)
 - [OAuth2ChallengeDtoResponse](docs/OAuth2ChallengeDtoResponse.md)
 - [OAuth2ChallengeTokenDto](docs/OAuth2ChallengeTokenDto.md)
 - [RefreshAuthenticationTokenDto](docs/RefreshAuthenticationTokenDto.md)
 - [RefreshAuthenticationTokenError](docs/RefreshAuthenticationTokenError.md)
 - [RefreshAuthenticationTokenRequestErrorCodes](docs/RefreshAuthenticationTokenRequestErrorCodes.md)
 - [RefreshAuthenticationTokenResponse](docs/RefreshAuthenticationTokenResponse.md)
 - [ReleaseStatus](docs/ReleaseStatus.md)
 - [Response](docs/Response.md)
 - [RevokeApplicationApiKeyError](docs/RevokeApplicationApiKeyError.md)
 - [RevokeApplicationApiKeyRequestErrorCodes](docs/RevokeApplicationApiKeyRequestErrorCodes.md)
 - [RevokeApplicationApiKeyResponse](docs/RevokeApplicationApiKeyResponse.md)
 - [TenantDto](docs/TenantDto.md)
 - [TenantInvitetenantBody](docs/TenantInvitetenantBody.md)
 - [TenantInvitetenantBody1](docs/TenantInvitetenantBody1.md)
 - [TenantInvitetenantBody2](docs/TenantInvitetenantBody2.md)
 - [TenantInvitetenantbyapplicationintegrationidBody](docs/TenantInvitetenantbyapplicationintegrationidBody.md)
 - [TenantInvitetenantbyapplicationintegrationidBody1](docs/TenantInvitetenantbyapplicationintegrationidBody1.md)
 - [TenantInvitetenantbyapplicationintegrationidBody2](docs/TenantInvitetenantbyapplicationintegrationidBody2.md)
 - [TenantListDto](docs/TenantListDto.md)
 - [TenantUpdatetenantconnectionBody](docs/TenantUpdatetenantconnectionBody.md)
 - [TenantUpdatetenantconnectionBody1](docs/TenantUpdatetenantconnectionBody1.md)
 - [TenantUpdatetenantconnectionBody2](docs/TenantUpdatetenantconnectionBody2.md)
 - [UnifiedContact](docs/UnifiedContact.md)
 - [UnifiedContactResponse](docs/UnifiedContactResponse.md)
 - [UnifiedContactsList](docs/UnifiedContactsList.md)
 - [UnifiedContactsListResponse](docs/UnifiedContactsListResponse.md)
 - [UpdateApplicationError](docs/UpdateApplicationError.md)
 - [UpdateApplicationRequest](docs/UpdateApplicationRequest.md)
 - [UpdateApplicationRequestDto](docs/UpdateApplicationRequestDto.md)
 - [UpdateApplicationRequestErrorCodes](docs/UpdateApplicationRequestErrorCodes.md)
 - [UpdateApplicationResponse](docs/UpdateApplicationResponse.md)
 - [UpdateTenantConnectionError](docs/UpdateTenantConnectionError.md)
 - [UpdateTenantConnectionRequest](docs/UpdateTenantConnectionRequest.md)
 - [UpdateTenantConnectionRequestDto](docs/UpdateTenantConnectionRequestDto.md)
 - [UpdateTenantConnectionRequestErrorCodes](docs/UpdateTenantConnectionRequestErrorCodes.md)
 - [UpdateTenantConnectionResponse](docs/UpdateTenantConnectionResponse.md)
 - [UserApplicationListError](docs/UserApplicationListError.md)
 - [UserApplicationListRequestErrorCodes](docs/UserApplicationListRequestErrorCodes.md)
 - [UserApplicationListResponse](docs/UserApplicationListResponse.md)
 - [UserDto](docs/UserDto.md)
 - [UserProfileStatisticsDto](docs/UserProfileStatisticsDto.md)
 - [UserProfileStatisticsError](docs/UserProfileStatisticsError.md)
 - [UserProfileStatisticsErrorCodes](docs/UserProfileStatisticsErrorCodes.md)
 - [UserProfileStatisticsResponse](docs/UserProfileStatisticsResponse.md)
 - [UserTenantListError](docs/UserTenantListError.md)
 - [UserTenantListRequestErrorCodes](docs/UserTenantListRequestErrorCodes.md)
 - [UserTenantListResponse](docs/UserTenantListResponse.md)

## Documentation For Authorization


## Bearer



## Author


