Metadata-Version: 2.4
Name: relaya-sdk-python
Version: 0.1.1
Summary: Relaya MAX API Python SDK
Home-page: https://relaya.ru
Author: Relaya
Author-email: Relaya <support@relaya.ru>
Project-URL: Homepage, https://relaya.ru
Project-URL: Repository, https://relaya.ru
Keywords: relaya,sdk,python,api,messaging,integrations
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: urllib3<3.0.0,>=2.1.0
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: pydantic>=2
Requires-Dist: typing-extensions>=4.7.1
Dynamic: author
Dynamic: home-page

# Relaya Python SDK
API for Relaya integrations and management

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: (devel)
- Package version: 0.1.1
- Generator version: 7.20.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python 3.9+

## Installation & Usage
### pip install

Install from PyPI:

```sh
pip install relaya-sdk-python
```

Then import the package:
```python
import relaya_sdk
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python -m pip install .
```

Then import the package:
```python
import relaya_sdk
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

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

```python

import relaya_sdk
from relaya_sdk.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.relaya.ru/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = relaya_sdk.Configuration(
    host = "https://api.relaya.ru/v1"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (JWT): BearerAuth
configuration = relaya_sdk.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)


# Enter a context with an instance of the API client
with relaya_sdk.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = relaya_sdk.AccountApi(api_client)

    try:
        # List account modules
        api_response = api_instance.get_account_modules()
        print("The response of AccountApi->get_account_modules:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling AccountApi->get_account_modules: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *https://api.relaya.ru/v1*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AccountApi* | [**get_account_modules**](docs/AccountApi.md#get_account_modules) | **GET** /account/modules | List account modules
*AccountApi* | [**get_account_modules_usage**](docs/AccountApi.md#get_account_modules_usage) | **GET** /account/modules/usage | Get account module usage
*AccountApi* | [**put_account_modules_module_code**](docs/AccountApi.md#put_account_modules_module_code) | **PUT** /account/modules/{moduleCode} | Update account module
*AuthApi* | [**auth_oauth_provider_callback_get**](docs/AuthApi.md#auth_oauth_provider_callback_get) | **GET** /auth/oauth/{provider}/callback | OAuth callback
*AuthApi* | [**auth_oauth_telegram_complete_post**](docs/AuthApi.md#auth_oauth_telegram_complete_post) | **POST** /auth/oauth/telegram/complete | OAuth Telegram complete
*AuthApi* | [**get_auth_oauth_provider_start**](docs/AuthApi.md#get_auth_oauth_provider_start) | **GET** /auth/oauth/{provider}/start | Start OAuth authorization
*AuthApi* | [**get_auth_oauth_providers**](docs/AuthApi.md#get_auth_oauth_providers) | **GET** /auth/oauth/providers | Get OAuth providers availability
*AuthApi* | [**get_profiles_profile_id_integrations_integration_auth_qr**](docs/AuthApi.md#get_profiles_profile_id_integrations_integration_auth_qr) | **GET** /profiles/{profileId}/integrations/{integration}/auth/qr | Get auth QR
*AuthApi* | [**get_profiles_profile_id_integrations_integration_auth_qr_status**](docs/AuthApi.md#get_profiles_profile_id_integrations_integration_auth_qr_status) | **GET** /profiles/{profileId}/integrations/{integration}/auth/qr/status | Get QR auth status
*AuthApi* | [**get_profiles_profile_id_integrations_integration_token**](docs/AuthApi.md#get_profiles_profile_id_integrations_integration_token) | **GET** /profiles/{profileId}/integrations/{integration}/token | Get bot token
*AuthApi* | [**get_users_exists**](docs/AuthApi.md#get_users_exists) | **GET** /users/exists | Check if user exists
*AuthApi* | [**post_auth_email_verify_confirm**](docs/AuthApi.md#post_auth_email_verify_confirm) | **POST** /auth/email/verify/confirm | Confirm email verification
*AuthApi* | [**post_auth_email_verify_request**](docs/AuthApi.md#post_auth_email_verify_request) | **POST** /auth/email/verify/request | Request email verification code
*AuthApi* | [**post_auth_oauth_pending_complete_email**](docs/AuthApi.md#post_auth_oauth_pending_complete_email) | **POST** /auth/oauth/pending/complete-email | Complete OAuth with email
*AuthApi* | [**post_auth_phone_telegram_confirm**](docs/AuthApi.md#post_auth_phone_telegram_confirm) | **POST** /auth/phone/telegram/confirm | Confirm Telegram phone verification
*AuthApi* | [**post_auth_phone_telegram_start**](docs/AuthApi.md#post_auth_phone_telegram_start) | **POST** /auth/phone/telegram/start | Start Telegram phone verification
*AuthApi* | [**post_auth_tokens**](docs/AuthApi.md#post_auth_tokens) | **POST** /auth/tokens | Create authentication token
*AuthApi* | [**post_profiles_profile_id_integrations_integration_auth2fa**](docs/AuthApi.md#post_profiles_profile_id_integrations_integration_auth2fa) | **POST** /profiles/{profileId}/integrations/{integration}/auth/2fa | Submit 2FA password
*AuthApi* | [**post_profiles_profile_id_integrations_integration_auth_logout**](docs/AuthApi.md#post_profiles_profile_id_integrations_integration_auth_logout) | **POST** /profiles/{profileId}/integrations/{integration}/auth/logout | Logout profile
*AuthApi* | [**post_profiles_profile_id_integrations_integration_auth_phone_code**](docs/AuthApi.md#post_profiles_profile_id_integrations_integration_auth_phone_code) | **POST** /profiles/{profileId}/integrations/{integration}/auth/phone/code | Confirm phone auth code
*AuthApi* | [**post_profiles_profile_id_integrations_integration_auth_phone_password**](docs/AuthApi.md#post_profiles_profile_id_integrations_integration_auth_phone_password) | **POST** /profiles/{profileId}/integrations/{integration}/auth/phone/password | Submit phone auth password
*AuthApi* | [**post_profiles_profile_id_integrations_integration_auth_phone_start**](docs/AuthApi.md#post_profiles_profile_id_integrations_integration_auth_phone_start) | **POST** /profiles/{profileId}/integrations/{integration}/auth/phone/start | Start phone auth
*AuthApi* | [**post_profiles_profile_id_integrations_integration_auth_sms_poll**](docs/AuthApi.md#post_profiles_profile_id_integrations_integration_auth_sms_poll) | **POST** /profiles/{profileId}/integrations/{integration}/auth/sms/poll | Poll authorization
*AuthApi* | [**post_profiles_profile_id_integrations_integration_auth_sms_start**](docs/AuthApi.md#post_profiles_profile_id_integrations_integration_auth_sms_start) | **POST** /profiles/{profileId}/integrations/{integration}/auth/sms/start | Start SMS authorization
*AuthApi* | [**post_profiles_profile_id_integrations_integration_auth_sms_verify**](docs/AuthApi.md#post_profiles_profile_id_integrations_integration_auth_sms_verify) | **POST** /profiles/{profileId}/integrations/{integration}/auth/sms/verify | Send authorization code
*AuthApi* | [**post_users**](docs/AuthApi.md#post_users) | **POST** /users | Register new user
*AuthApi* | [**profiles_profile_id_integrations_integration_oauth_callback_get**](docs/AuthApi.md#profiles_profile_id_integrations_integration_oauth_callback_get) | **GET** /profiles/{profileId}/integrations/{integration}/oauth/callback | VK OAuth callback
*AuthApi* | [**put_profiles_profile_id_integrations_integration_token**](docs/AuthApi.md#put_profiles_profile_id_integrations_integration_token) | **PUT** /profiles/{profileId}/integrations/{integration}/token | Set bot token
*BillingApi* | [**billing_provider_webhook_post**](docs/BillingApi.md#billing_provider_webhook_post) | **POST** /billing/provider/webhook | Billing provider webhook
*BillingApi* | [**get_billing_topups**](docs/BillingApi.md#get_billing_topups) | **GET** /billing/topups | List top-up intents
*BillingApi* | [**get_billing_topups_topup_id**](docs/BillingApi.md#get_billing_topups_topup_id) | **GET** /billing/topups/{topupId} | Get top-up status
*BillingApi* | [**get_billing_transactions**](docs/BillingApi.md#get_billing_transactions) | **GET** /billing/transactions | List transactions
*BillingApi* | [**post_billing_topups**](docs/BillingApi.md#post_billing_topups) | **POST** /billing/topups | Create top-up intent
*BillingApi* | [**post_billing_topups_topup_id_refresh**](docs/BillingApi.md#post_billing_topups_topup_id_refresh) | **POST** /billing/topups/{topupId}/refresh | Refresh top-up status from provider
*ChatsApi* | [**delete_profiles_profile_id_integrations_integration_folders_folder_id**](docs/ChatsApi.md#delete_profiles_profile_id_integrations_integration_folders_folder_id) | **DELETE** /profiles/{profileId}/integrations/{integration}/folders/{folderId} | Delete MAX folder
*ChatsApi* | [**get_profiles_profile_id_integrations_integration_folders**](docs/ChatsApi.md#get_profiles_profile_id_integrations_integration_folders) | **GET** /profiles/{profileId}/integrations/{integration}/folders | List MAX folders
*ChatsApi* | [**post_profiles_profile_id_integrations_integration_chats_by_ids**](docs/ChatsApi.md#post_profiles_profile_id_integrations_integration_chats_by_ids) | **POST** /profiles/{profileId}/integrations/{integration}/chats/by-ids | Get chats by IDs
*ChatsApi* | [**post_profiles_profile_id_integrations_integration_chats_subscription**](docs/ChatsApi.md#post_profiles_profile_id_integrations_integration_chats_subscription) | **POST** /profiles/{profileId}/integrations/{integration}/chats/subscription | Subscribe/unsubscribe chat updates
*ChatsApi* | [**post_profiles_profile_id_integrations_integration_folders**](docs/ChatsApi.md#post_profiles_profile_id_integrations_integration_folders) | **POST** /profiles/{profileId}/integrations/{integration}/folders | Create MAX folder
*ChatsApi* | [**put_profiles_profile_id_integrations_integration_folders_order**](docs/ChatsApi.md#put_profiles_profile_id_integrations_integration_folders_order) | **PUT** /profiles/{profileId}/integrations/{integration}/folders/order | Reorder MAX folders
*DashboardApi* | [**get_users_me_dashboard_summary**](docs/DashboardApi.md#get_users_me_dashboard_summary) | **GET** /users/me/dashboard-summary | Get dashboard summary
*InboxApi* | [**get_profiles_profile_id_integrations_integration_inbox_conversations**](docs/InboxApi.md#get_profiles_profile_id_integrations_integration_inbox_conversations) | **GET** /profiles/{profileId}/integrations/{integration}/inbox/conversations | List inbox conversations
*InboxApi* | [**get_profiles_profile_id_integrations_integration_inbox_messages**](docs/InboxApi.md#get_profiles_profile_id_integrations_integration_inbox_messages) | **GET** /profiles/{profileId}/integrations/{integration}/inbox/messages | List inbox messages
*InboxApi* | [**get_users_me_inbox_conversations**](docs/InboxApi.md#get_users_me_inbox_conversations) | **GET** /users/me/inbox/conversations | List omnichannel inbox conversations
*InboxApi* | [**get_users_me_inbox_messages**](docs/InboxApi.md#get_users_me_inbox_messages) | **GET** /users/me/inbox/messages | List omnichannel inbox messages
*InboxApi* | [**post_profiles_profile_id_integrations_integration_inbox_conversations_action**](docs/InboxApi.md#post_profiles_profile_id_integrations_integration_inbox_conversations_action) | **POST** /profiles/{profileId}/integrations/{integration}/inbox/conversations/action | Inbox conversation action
*InboxApi* | [**post_profiles_profile_id_integrations_integration_inbox_conversations_avatar**](docs/InboxApi.md#post_profiles_profile_id_integrations_integration_inbox_conversations_avatar) | **POST** /profiles/{profileId}/integrations/{integration}/inbox/conversations/avatar | Inbox conversation avatar
*InboxApi* | [**post_profiles_profile_id_integrations_integration_inbox_read**](docs/InboxApi.md#post_profiles_profile_id_integrations_integration_inbox_read) | **POST** /profiles/{profileId}/integrations/{integration}/inbox/read | Mark inbox read
*InboxApi* | [**post_users_me_inbox_conversations_action**](docs/InboxApi.md#post_users_me_inbox_conversations_action) | **POST** /users/me/inbox/conversations/action | Toggle omnichannel conversation action
*InboxApi* | [**post_users_me_inbox_conversations_avatar**](docs/InboxApi.md#post_users_me_inbox_conversations_avatar) | **POST** /users/me/inbox/conversations/avatar | Set omnichannel conversation avatar
*InboxApi* | [**post_users_me_inbox_conversations_title**](docs/InboxApi.md#post_users_me_inbox_conversations_title) | **POST** /users/me/inbox/conversations/title | Set omnichannel conversation title
*InboxApi* | [**post_users_me_inbox_read**](docs/InboxApi.md#post_users_me_inbox_read) | **POST** /users/me/inbox/read | Mark omnichannel conversation as read
*InboxApi* | [**post_users_me_inbox_send**](docs/InboxApi.md#post_users_me_inbox_send) | **POST** /users/me/inbox/send | Send omnichannel inbox message
*IntegrationsApi* | [**delete_profiles_profile_id_integrations_integration_session**](docs/IntegrationsApi.md#delete_profiles_profile_id_integrations_integration_session) | **DELETE** /profiles/{profileId}/integrations/{integration}/session | Clear integration session
*IntegrationsApi* | [**get_profiles_profile_id_integrations_integration_auth_qr**](docs/IntegrationsApi.md#get_profiles_profile_id_integrations_integration_auth_qr) | **GET** /profiles/{profileId}/integrations/{integration}/auth/qr | Get auth QR
*IntegrationsApi* | [**get_profiles_profile_id_integrations_integration_auth_qr_status**](docs/IntegrationsApi.md#get_profiles_profile_id_integrations_integration_auth_qr_status) | **GET** /profiles/{profileId}/integrations/{integration}/auth/qr/status | Get QR auth status
*IntegrationsApi* | [**get_profiles_profile_id_integrations_integration_inbox_conversations**](docs/IntegrationsApi.md#get_profiles_profile_id_integrations_integration_inbox_conversations) | **GET** /profiles/{profileId}/integrations/{integration}/inbox/conversations | List inbox conversations
*IntegrationsApi* | [**get_profiles_profile_id_integrations_integration_inbox_messages**](docs/IntegrationsApi.md#get_profiles_profile_id_integrations_integration_inbox_messages) | **GET** /profiles/{profileId}/integrations/{integration}/inbox/messages | List inbox messages
*IntegrationsApi* | [**get_profiles_profile_id_integrations_integration_overview**](docs/IntegrationsApi.md#get_profiles_profile_id_integrations_integration_overview) | **GET** /profiles/{profileId}/integrations/{integration}/overview | Get profile overview
*IntegrationsApi* | [**get_profiles_profile_id_integrations_integration_session**](docs/IntegrationsApi.md#get_profiles_profile_id_integrations_integration_session) | **GET** /profiles/{profileId}/integrations/{integration}/session | Get integration session
*IntegrationsApi* | [**get_profiles_profile_id_integrations_integration_session_chats**](docs/IntegrationsApi.md#get_profiles_profile_id_integrations_integration_session_chats) | **GET** /profiles/{profileId}/integrations/{integration}/session/chats | Get integration chats
*IntegrationsApi* | [**get_profiles_profile_id_integrations_integration_status**](docs/IntegrationsApi.md#get_profiles_profile_id_integrations_integration_status) | **GET** /profiles/{profileId}/integrations/{integration}/status | Get profile status
*IntegrationsApi* | [**get_profiles_profile_id_integrations_integration_token**](docs/IntegrationsApi.md#get_profiles_profile_id_integrations_integration_token) | **GET** /profiles/{profileId}/integrations/{integration}/token | Get bot token
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_auth2fa**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_auth2fa) | **POST** /profiles/{profileId}/integrations/{integration}/auth/2fa | Submit 2FA password
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_auth_logout**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_auth_logout) | **POST** /profiles/{profileId}/integrations/{integration}/auth/logout | Logout profile
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_auth_phone_code**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_auth_phone_code) | **POST** /profiles/{profileId}/integrations/{integration}/auth/phone/code | Confirm phone auth code
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_auth_phone_password**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_auth_phone_password) | **POST** /profiles/{profileId}/integrations/{integration}/auth/phone/password | Submit phone auth password
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_auth_phone_start**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_auth_phone_start) | **POST** /profiles/{profileId}/integrations/{integration}/auth/phone/start | Start phone auth
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_inbox_conversations_action**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_inbox_conversations_action) | **POST** /profiles/{profileId}/integrations/{integration}/inbox/conversations/action | Inbox conversation action
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_inbox_conversations_avatar**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_inbox_conversations_avatar) | **POST** /profiles/{profileId}/integrations/{integration}/inbox/conversations/avatar | Inbox conversation avatar
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_inbox_read**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_inbox_read) | **POST** /profiles/{profileId}/integrations/{integration}/inbox/read | Mark inbox read
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_messages**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_messages) | **POST** /profiles/{profileId}/integrations/{integration}/messages | Send message
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_messages_delete**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_messages_delete) | **POST** /profiles/{profileId}/integrations/{integration}/messages/delete | Delete message
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_messages_edit**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_messages_edit) | **POST** /profiles/{profileId}/integrations/{integration}/messages/edit | Edit message
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_messages_forward**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_messages_forward) | **POST** /profiles/{profileId}/integrations/{integration}/messages/forward | Forward message
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_messages_history**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_messages_history) | **POST** /profiles/{profileId}/integrations/{integration}/messages/history | Get chat history
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_messages_reply**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_messages_reply) | **POST** /profiles/{profileId}/integrations/{integration}/messages/reply | Reply message
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_session_events**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_session_events) | **POST** /profiles/{profileId}/integrations/{integration}/session/events | Get integration events
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_session_start**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_session_start) | **POST** /profiles/{profileId}/integrations/{integration}/session/start | Start integration session
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_session_stop**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_session_stop) | **POST** /profiles/{profileId}/integrations/{integration}/session/stop | Stop integration session
*IntegrationsApi* | [**post_profiles_profile_id_integrations_integration_sync**](docs/IntegrationsApi.md#post_profiles_profile_id_integrations_integration_sync) | **POST** /profiles/{profileId}/integrations/{integration}/sync | Sync integration profile
*IntegrationsApi* | [**profiles_profile_id_integrations_integration_messages_files_post**](docs/IntegrationsApi.md#profiles_profile_id_integrations_integration_messages_files_post) | **POST** /profiles/{profileId}/integrations/{integration}/messages/files | Upload file
*IntegrationsApi* | [**profiles_profile_id_integrations_integration_webhooks_check_post**](docs/IntegrationsApi.md#profiles_profile_id_integrations_integration_webhooks_check_post) | **POST** /profiles/{profileId}/integrations/{integration}/webhooks/check | Check webhook endpoint
*IntegrationsApi* | [**profiles_profile_id_integrations_integration_webhooks_dlq_get**](docs/IntegrationsApi.md#profiles_profile_id_integrations_integration_webhooks_dlq_get) | **GET** /profiles/{profileId}/integrations/{integration}/webhooks/dlq | List webhook DLQ
*IntegrationsApi* | [**profiles_profile_id_integrations_integration_webhooks_dlq_redrive_post**](docs/IntegrationsApi.md#profiles_profile_id_integrations_integration_webhooks_dlq_redrive_post) | **POST** /profiles/{profileId}/integrations/{integration}/webhooks/dlq/redrive | Redrive webhook DLQ
*IntegrationsApi* | [**profiles_profile_id_integrations_integration_webhooks_get**](docs/IntegrationsApi.md#profiles_profile_id_integrations_integration_webhooks_get) | **GET** /profiles/{profileId}/integrations/{integration}/webhooks | List webhooks
*IntegrationsApi* | [**profiles_profile_id_integrations_integration_webhooks_id_delete**](docs/IntegrationsApi.md#profiles_profile_id_integrations_integration_webhooks_id_delete) | **DELETE** /profiles/{profileId}/integrations/{integration}/webhooks/{id} | Delete webhook
*IntegrationsApi* | [**profiles_profile_id_integrations_integration_webhooks_id_get**](docs/IntegrationsApi.md#profiles_profile_id_integrations_integration_webhooks_id_get) | **GET** /profiles/{profileId}/integrations/{integration}/webhooks/{id} | Get webhook
*IntegrationsApi* | [**profiles_profile_id_integrations_integration_webhooks_id_patch**](docs/IntegrationsApi.md#profiles_profile_id_integrations_integration_webhooks_id_patch) | **PATCH** /profiles/{profileId}/integrations/{integration}/webhooks/{id} | Update webhook
*IntegrationsApi* | [**profiles_profile_id_integrations_integration_webhooks_id_test_post**](docs/IntegrationsApi.md#profiles_profile_id_integrations_integration_webhooks_id_test_post) | **POST** /profiles/{profileId}/integrations/{integration}/webhooks/{id}/test | Test webhook
*IntegrationsApi* | [**profiles_profile_id_integrations_integration_webhooks_post**](docs/IntegrationsApi.md#profiles_profile_id_integrations_integration_webhooks_post) | **POST** /profiles/{profileId}/integrations/{integration}/webhooks | Create webhook
*IntegrationsApi* | [**put_profiles_profile_id_integrations_integration_session**](docs/IntegrationsApi.md#put_profiles_profile_id_integrations_integration_session) | **PUT** /profiles/{profileId}/integrations/{integration}/session | Set integration session
*IntegrationsApi* | [**put_profiles_profile_id_integrations_integration_token**](docs/IntegrationsApi.md#put_profiles_profile_id_integrations_integration_token) | **PUT** /profiles/{profileId}/integrations/{integration}/token | Set bot token
*MaxApi* | [**delete_profiles_profile_id_integrations_integration_folders_folder_id**](docs/MaxApi.md#delete_profiles_profile_id_integrations_integration_folders_folder_id) | **DELETE** /profiles/{profileId}/integrations/{integration}/folders/{folderId} | Delete MAX folder
*MaxApi* | [**delete_profiles_profile_id_integrations_integration_messages_reactions**](docs/MaxApi.md#delete_profiles_profile_id_integrations_integration_messages_reactions) | **DELETE** /profiles/{profileId}/integrations/{integration}/messages/reactions | Remove reaction
*MaxApi* | [**get_profiles_profile_id_integrations_integration_contacts**](docs/MaxApi.md#get_profiles_profile_id_integrations_integration_contacts) | **GET** /profiles/{profileId}/integrations/{integration}/contacts | List contacts
*MaxApi* | [**get_profiles_profile_id_integrations_integration_contacts_blocked**](docs/MaxApi.md#get_profiles_profile_id_integrations_integration_contacts_blocked) | **GET** /profiles/{profileId}/integrations/{integration}/contacts/blocked | List blocked contacts
*MaxApi* | [**get_profiles_profile_id_integrations_integration_devices**](docs/MaxApi.md#get_profiles_profile_id_integrations_integration_devices) | **GET** /profiles/{profileId}/integrations/{integration}/devices | List active MAX devices
*MaxApi* | [**get_profiles_profile_id_integrations_integration_folders**](docs/MaxApi.md#get_profiles_profile_id_integrations_integration_folders) | **GET** /profiles/{profileId}/integrations/{integration}/folders | List MAX folders
*MaxApi* | [**get_profiles_profile_id_integrations_integration_sessions**](docs/MaxApi.md#get_profiles_profile_id_integrations_integration_sessions) | **GET** /profiles/{profileId}/integrations/{integration}/sessions | List active MAX sessions/devices
*MaxApi* | [**get_profiles_profile_id_integrations_integration_settings**](docs/MaxApi.md#get_profiles_profile_id_integrations_integration_settings) | **GET** /profiles/{profileId}/integrations/{integration}/settings | Get settings
*MaxApi* | [**get_profiles_profile_id_integrations_integration_settings_user**](docs/MaxApi.md#get_profiles_profile_id_integrations_integration_settings_user) | **GET** /profiles/{profileId}/integrations/{integration}/settings/user | Get MAX account settings
*MaxApi* | [**patch_profiles_profile_id_integrations_integration_account_profile**](docs/MaxApi.md#patch_profiles_profile_id_integrations_integration_account_profile) | **PATCH** /profiles/{profileId}/integrations/{integration}/account/profile | Update MAX profile name/description
*MaxApi* | [**patch_profiles_profile_id_integrations_integration_settings**](docs/MaxApi.md#patch_profiles_profile_id_integrations_integration_settings) | **PATCH** /profiles/{profileId}/integrations/{integration}/settings | Update settings
*MaxApi* | [**patch_profiles_profile_id_integrations_integration_settings_user**](docs/MaxApi.md#patch_profiles_profile_id_integrations_integration_settings_user) | **PATCH** /profiles/{profileId}/integrations/{integration}/settings/user | Update MAX account settings
*MaxApi* | [**post_profiles_profile_id_integrations_integration_auth_sms_poll**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_auth_sms_poll) | **POST** /profiles/{profileId}/integrations/{integration}/auth/sms/poll | Poll authorization
*MaxApi* | [**post_profiles_profile_id_integrations_integration_auth_sms_start**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_auth_sms_start) | **POST** /profiles/{profileId}/integrations/{integration}/auth/sms/start | Start SMS authorization
*MaxApi* | [**post_profiles_profile_id_integrations_integration_auth_sms_verify**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_auth_sms_verify) | **POST** /profiles/{profileId}/integrations/{integration}/auth/sms/verify | Send authorization code
*MaxApi* | [**post_profiles_profile_id_integrations_integration_chats_by_ids**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_chats_by_ids) | **POST** /profiles/{profileId}/integrations/{integration}/chats/by-ids | Get chats by IDs
*MaxApi* | [**post_profiles_profile_id_integrations_integration_chats_subscription**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_chats_subscription) | **POST** /profiles/{profileId}/integrations/{integration}/chats/subscription | Subscribe/unsubscribe chat updates
*MaxApi* | [**post_profiles_profile_id_integrations_integration_contacts_by_ids**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_contacts_by_ids) | **POST** /profiles/{profileId}/integrations/{integration}/contacts/by-ids | Get contacts by IDs
*MaxApi* | [**post_profiles_profile_id_integrations_integration_contacts_last_online**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_contacts_last_online) | **POST** /profiles/{profileId}/integrations/{integration}/contacts/last-online | Get contacts last online by IDs
*MaxApi* | [**post_profiles_profile_id_integrations_integration_contacts_search**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_contacts_search) | **POST** /profiles/{profileId}/integrations/{integration}/contacts/search | Search contact by phone
*MaxApi* | [**post_profiles_profile_id_integrations_integration_folders**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_folders) | **POST** /profiles/{profileId}/integrations/{integration}/folders | Create MAX folder
*MaxApi* | [**post_profiles_profile_id_integrations_integration_messages_reactions**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_messages_reactions) | **POST** /profiles/{profileId}/integrations/{integration}/messages/reactions | Send reaction
*MaxApi* | [**post_profiles_profile_id_integrations_integration_messages_read**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_messages_read) | **POST** /profiles/{profileId}/integrations/{integration}/messages/read | Mark chat read
*MaxApi* | [**post_profiles_profile_id_integrations_integration_messages_typing**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_messages_typing) | **POST** /profiles/{profileId}/integrations/{integration}/messages/typing | Send typing status
*MaxApi* | [**post_profiles_profile_id_integrations_integration_messages_unread**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_messages_unread) | **POST** /profiles/{profileId}/integrations/{integration}/messages/unread | Mark chat as unread
*MaxApi* | [**post_profiles_profile_id_integrations_integration_reboot**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_reboot) | **POST** /profiles/{profileId}/integrations/{integration}/reboot | Reboot profile
*MaxApi* | [**post_profiles_profile_id_integrations_integration_videos_resolve**](docs/MaxApi.md#post_profiles_profile_id_integrations_integration_videos_resolve) | **POST** /profiles/{profileId}/integrations/{integration}/videos/resolve | Resolve video links by video ID
*MaxApi* | [**profiles_profile_id_integrations_integration_avatar_post**](docs/MaxApi.md#profiles_profile_id_integrations_integration_avatar_post) | **POST** /profiles/{profileId}/integrations/{integration}/avatar | Set profile picture
*MaxApi* | [**put_profiles_profile_id_integrations_integration_folders_order**](docs/MaxApi.md#put_profiles_profile_id_integrations_integration_folders_order) | **PUT** /profiles/{profileId}/integrations/{integration}/folders/order | Reorder MAX folders
*MessagesApi* | [**delete_profiles_profile_id_integrations_integration_messages_reactions**](docs/MessagesApi.md#delete_profiles_profile_id_integrations_integration_messages_reactions) | **DELETE** /profiles/{profileId}/integrations/{integration}/messages/reactions | Remove reaction
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_messages**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_messages) | **POST** /profiles/{profileId}/integrations/{integration}/messages | Send message
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_messages_delete**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_messages_delete) | **POST** /profiles/{profileId}/integrations/{integration}/messages/delete | Delete message
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_messages_edit**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_messages_edit) | **POST** /profiles/{profileId}/integrations/{integration}/messages/edit | Edit message
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_messages_forward**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_messages_forward) | **POST** /profiles/{profileId}/integrations/{integration}/messages/forward | Forward message
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_messages_history**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_messages_history) | **POST** /profiles/{profileId}/integrations/{integration}/messages/history | Get chat history
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_messages_reactions**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_messages_reactions) | **POST** /profiles/{profileId}/integrations/{integration}/messages/reactions | Send reaction
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_messages_read**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_messages_read) | **POST** /profiles/{profileId}/integrations/{integration}/messages/read | Mark chat read
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_messages_reply**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_messages_reply) | **POST** /profiles/{profileId}/integrations/{integration}/messages/reply | Reply message
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_messages_typing**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_messages_typing) | **POST** /profiles/{profileId}/integrations/{integration}/messages/typing | Send typing status
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_messages_unread**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_messages_unread) | **POST** /profiles/{profileId}/integrations/{integration}/messages/unread | Mark chat as unread
*MessagesApi* | [**post_profiles_profile_id_integrations_integration_videos_resolve**](docs/MessagesApi.md#post_profiles_profile_id_integrations_integration_videos_resolve) | **POST** /profiles/{profileId}/integrations/{integration}/videos/resolve | Resolve video links by video ID
*MessagesApi* | [**profiles_profile_id_integrations_integration_messages_files_post**](docs/MessagesApi.md#profiles_profile_id_integrations_integration_messages_files_post) | **POST** /profiles/{profileId}/integrations/{integration}/messages/files | Upload file
*ModulesApi* | [**get_account_modules**](docs/ModulesApi.md#get_account_modules) | **GET** /account/modules | List account modules
*ModulesApi* | [**get_account_modules_usage**](docs/ModulesApi.md#get_account_modules_usage) | **GET** /account/modules/usage | Get account module usage
*ModulesApi* | [**put_account_modules_module_code**](docs/ModulesApi.md#put_account_modules_module_code) | **PUT** /account/modules/{moduleCode} | Update account module
*NotificationsApi* | [**get_notifications**](docs/NotificationsApi.md#get_notifications) | **GET** /notifications | List notifications
*NotificationsApi* | [**get_notifications_unread**](docs/NotificationsApi.md#get_notifications_unread) | **GET** /notifications/unread | Get unread count
*NotificationsApi* | [**post_notifications_mark_all**](docs/NotificationsApi.md#post_notifications_mark_all) | **POST** /notifications/mark-all | Mark all as read
*NotificationsApi* | [**post_notifications_mark_read**](docs/NotificationsApi.md#post_notifications_mark_read) | **POST** /notifications/mark-read | Mark as read
*ProfilesApi* | [**delete_profiles_profile_id**](docs/ProfilesApi.md#delete_profiles_profile_id) | **DELETE** /profiles/{profileId} | Delete profile
*ProfilesApi* | [**get_profiles**](docs/ProfilesApi.md#get_profiles) | **GET** /profiles | List profiles
*ProfilesApi* | [**get_profiles_profile_id**](docs/ProfilesApi.md#get_profiles_profile_id) | **GET** /profiles/{profileId} | Get profile
*ProfilesApi* | [**get_profiles_profile_id_actions**](docs/ProfilesApi.md#get_profiles_profile_id_actions) | **GET** /profiles/{profileId}/actions | Get profile actions
*ProfilesApi* | [**get_profiles_profile_id_integrations_integration_contacts**](docs/ProfilesApi.md#get_profiles_profile_id_integrations_integration_contacts) | **GET** /profiles/{profileId}/integrations/{integration}/contacts | List contacts
*ProfilesApi* | [**get_profiles_profile_id_integrations_integration_contacts_blocked**](docs/ProfilesApi.md#get_profiles_profile_id_integrations_integration_contacts_blocked) | **GET** /profiles/{profileId}/integrations/{integration}/contacts/blocked | List blocked contacts
*ProfilesApi* | [**get_profiles_profile_id_integrations_integration_overview**](docs/ProfilesApi.md#get_profiles_profile_id_integrations_integration_overview) | **GET** /profiles/{profileId}/integrations/{integration}/overview | Get profile overview
*ProfilesApi* | [**get_profiles_profile_id_integrations_integration_status**](docs/ProfilesApi.md#get_profiles_profile_id_integrations_integration_status) | **GET** /profiles/{profileId}/integrations/{integration}/status | Get profile status
*ProfilesApi* | [**patch_profiles_profile_id**](docs/ProfilesApi.md#patch_profiles_profile_id) | **PATCH** /profiles/{profileId} | Update profile
*ProfilesApi* | [**patch_profiles_profile_id_integrations_integration_account_profile**](docs/ProfilesApi.md#patch_profiles_profile_id_integrations_integration_account_profile) | **PATCH** /profiles/{profileId}/integrations/{integration}/account/profile | Update MAX profile name/description
*ProfilesApi* | [**post_profiles**](docs/ProfilesApi.md#post_profiles) | **POST** /profiles | Create profile
*ProfilesApi* | [**post_profiles_profile_id_integrations_integration_contacts_by_ids**](docs/ProfilesApi.md#post_profiles_profile_id_integrations_integration_contacts_by_ids) | **POST** /profiles/{profileId}/integrations/{integration}/contacts/by-ids | Get contacts by IDs
*ProfilesApi* | [**post_profiles_profile_id_integrations_integration_contacts_last_online**](docs/ProfilesApi.md#post_profiles_profile_id_integrations_integration_contacts_last_online) | **POST** /profiles/{profileId}/integrations/{integration}/contacts/last-online | Get contacts last online by IDs
*ProfilesApi* | [**post_profiles_profile_id_integrations_integration_contacts_search**](docs/ProfilesApi.md#post_profiles_profile_id_integrations_integration_contacts_search) | **POST** /profiles/{profileId}/integrations/{integration}/contacts/search | Search contact by phone
*ProfilesApi* | [**post_profiles_profile_id_integrations_integration_reboot**](docs/ProfilesApi.md#post_profiles_profile_id_integrations_integration_reboot) | **POST** /profiles/{profileId}/integrations/{integration}/reboot | Reboot profile
*ProfilesApi* | [**post_profiles_profile_id_renew**](docs/ProfilesApi.md#post_profiles_profile_id_renew) | **POST** /profiles/{profileId}/renew | Renew profile
*ProfilesApi* | [**profiles_profile_id_integrations_integration_avatar_post**](docs/ProfilesApi.md#profiles_profile_id_integrations_integration_avatar_post) | **POST** /profiles/{profileId}/integrations/{integration}/avatar | Set profile picture
*ProfilesApi* | [**put_profiles_profile_id_auto_renew**](docs/ProfilesApi.md#put_profiles_profile_id_auto_renew) | **PUT** /profiles/{profileId}/auto-renew | Update auto-renew
*ScenariosApi* | [**users_me_scenarios_get**](docs/ScenariosApi.md#users_me_scenarios_get) | **GET** /users/me/scenarios | List account scenarios
*ScenariosApi* | [**users_me_scenarios_id_delete**](docs/ScenariosApi.md#users_me_scenarios_id_delete) | **DELETE** /users/me/scenarios/{id} | Delete account scenario
*ScenariosApi* | [**users_me_scenarios_put**](docs/ScenariosApi.md#users_me_scenarios_put) | **PUT** /users/me/scenarios | Upsert account scenario
*SessionsApi* | [**delete_profiles_profile_id_integrations_integration_session**](docs/SessionsApi.md#delete_profiles_profile_id_integrations_integration_session) | **DELETE** /profiles/{profileId}/integrations/{integration}/session | Clear integration session
*SessionsApi* | [**delete_users_me_sessions_session_id**](docs/SessionsApi.md#delete_users_me_sessions_session_id) | **DELETE** /users/me/sessions/{sessionId} | Revoke session
*SessionsApi* | [**get_profiles_profile_id_integrations_integration_devices**](docs/SessionsApi.md#get_profiles_profile_id_integrations_integration_devices) | **GET** /profiles/{profileId}/integrations/{integration}/devices | List active MAX devices
*SessionsApi* | [**get_profiles_profile_id_integrations_integration_session**](docs/SessionsApi.md#get_profiles_profile_id_integrations_integration_session) | **GET** /profiles/{profileId}/integrations/{integration}/session | Get integration session
*SessionsApi* | [**get_profiles_profile_id_integrations_integration_session_chats**](docs/SessionsApi.md#get_profiles_profile_id_integrations_integration_session_chats) | **GET** /profiles/{profileId}/integrations/{integration}/session/chats | Get integration chats
*SessionsApi* | [**get_profiles_profile_id_integrations_integration_sessions**](docs/SessionsApi.md#get_profiles_profile_id_integrations_integration_sessions) | **GET** /profiles/{profileId}/integrations/{integration}/sessions | List active MAX sessions/devices
*SessionsApi* | [**get_users_me_sessions**](docs/SessionsApi.md#get_users_me_sessions) | **GET** /users/me/sessions | List user sessions
*SessionsApi* | [**post_profiles_profile_id_integrations_integration_session_events**](docs/SessionsApi.md#post_profiles_profile_id_integrations_integration_session_events) | **POST** /profiles/{profileId}/integrations/{integration}/session/events | Get integration events
*SessionsApi* | [**post_profiles_profile_id_integrations_integration_session_start**](docs/SessionsApi.md#post_profiles_profile_id_integrations_integration_session_start) | **POST** /profiles/{profileId}/integrations/{integration}/session/start | Start integration session
*SessionsApi* | [**post_profiles_profile_id_integrations_integration_session_stop**](docs/SessionsApi.md#post_profiles_profile_id_integrations_integration_session_stop) | **POST** /profiles/{profileId}/integrations/{integration}/session/stop | Stop integration session
*SessionsApi* | [**post_profiles_profile_id_integrations_integration_sync**](docs/SessionsApi.md#post_profiles_profile_id_integrations_integration_sync) | **POST** /profiles/{profileId}/integrations/{integration}/sync | Sync integration profile
*SessionsApi* | [**post_users_me_sessions_revoke_all**](docs/SessionsApi.md#post_users_me_sessions_revoke_all) | **POST** /users/me/sessions/revoke-all | Revoke all sessions
*SessionsApi* | [**post_users_me_sessions_revoke_others**](docs/SessionsApi.md#post_users_me_sessions_revoke_others) | **POST** /users/me/sessions/revoke-others | Revoke other sessions
*SessionsApi* | [**put_profiles_profile_id_integrations_integration_session**](docs/SessionsApi.md#put_profiles_profile_id_integrations_integration_session) | **PUT** /profiles/{profileId}/integrations/{integration}/session | Set integration session
*SettingsApi* | [**get_profiles_profile_id_integrations_integration_settings**](docs/SettingsApi.md#get_profiles_profile_id_integrations_integration_settings) | **GET** /profiles/{profileId}/integrations/{integration}/settings | Get settings
*SettingsApi* | [**get_profiles_profile_id_integrations_integration_settings_user**](docs/SettingsApi.md#get_profiles_profile_id_integrations_integration_settings_user) | **GET** /profiles/{profileId}/integrations/{integration}/settings/user | Get MAX account settings
*SettingsApi* | [**patch_profiles_profile_id_integrations_integration_settings**](docs/SettingsApi.md#patch_profiles_profile_id_integrations_integration_settings) | **PATCH** /profiles/{profileId}/integrations/{integration}/settings | Update settings
*SettingsApi* | [**patch_profiles_profile_id_integrations_integration_settings_user**](docs/SettingsApi.md#patch_profiles_profile_id_integrations_integration_settings_user) | **PATCH** /profiles/{profileId}/integrations/{integration}/settings/user | Update MAX account settings
*SystemApi* | [**docs_get**](docs/SystemApi.md#docs_get) | **GET** /docs | API reference
*SystemApi* | [**get_status**](docs/SystemApi.md#get_status) | **GET** /status | Service status
*TokensApi* | [**delete_users_me_api_tokens_id**](docs/TokensApi.md#delete_users_me_api_tokens_id) | **DELETE** /users/me/api-tokens/{id} | Revoke API token
*TokensApi* | [**get_users_me_api_scopes**](docs/TokensApi.md#get_users_me_api_scopes) | **GET** /users/me/api-scopes | List available API scopes
*TokensApi* | [**get_users_me_api_tokens**](docs/TokensApi.md#get_users_me_api_tokens) | **GET** /users/me/api-tokens | List API tokens
*TokensApi* | [**post_users_me_api_tokens**](docs/TokensApi.md#post_users_me_api_tokens) | **POST** /users/me/api-tokens | Create API token
*TokensApi* | [**post_users_me_api_tokens_id_rotate**](docs/TokensApi.md#post_users_me_api_tokens_id_rotate) | **POST** /users/me/api-tokens/{id}/rotate | Rotate API token
*UsersApi* | [**get_users_me**](docs/UsersApi.md#get_users_me) | **GET** /users/me | Get current user
*UsersApi* | [**get_users_me_dashboard_summary**](docs/UsersApi.md#get_users_me_dashboard_summary) | **GET** /users/me/dashboard-summary | Get dashboard summary
*UsersApi* | [**get_users_me_inbox_conversations**](docs/UsersApi.md#get_users_me_inbox_conversations) | **GET** /users/me/inbox/conversations | List omnichannel inbox conversations
*UsersApi* | [**get_users_me_inbox_messages**](docs/UsersApi.md#get_users_me_inbox_messages) | **GET** /users/me/inbox/messages | List omnichannel inbox messages
*UsersApi* | [**post_users_me_inbox_conversations_action**](docs/UsersApi.md#post_users_me_inbox_conversations_action) | **POST** /users/me/inbox/conversations/action | Toggle omnichannel conversation action
*UsersApi* | [**post_users_me_inbox_conversations_avatar**](docs/UsersApi.md#post_users_me_inbox_conversations_avatar) | **POST** /users/me/inbox/conversations/avatar | Set omnichannel conversation avatar
*UsersApi* | [**post_users_me_inbox_conversations_title**](docs/UsersApi.md#post_users_me_inbox_conversations_title) | **POST** /users/me/inbox/conversations/title | Set omnichannel conversation title
*UsersApi* | [**post_users_me_inbox_read**](docs/UsersApi.md#post_users_me_inbox_read) | **POST** /users/me/inbox/read | Mark omnichannel conversation as read
*UsersApi* | [**post_users_me_inbox_send**](docs/UsersApi.md#post_users_me_inbox_send) | **POST** /users/me/inbox/send | Send omnichannel inbox message
*UsersApi* | [**post_users_me_password**](docs/UsersApi.md#post_users_me_password) | **POST** /users/me/password | Change current user password
*UsersApi* | [**users_me_scenarios_get**](docs/UsersApi.md#users_me_scenarios_get) | **GET** /users/me/scenarios | List account scenarios
*UsersApi* | [**users_me_scenarios_id_delete**](docs/UsersApi.md#users_me_scenarios_id_delete) | **DELETE** /users/me/scenarios/{id} | Delete account scenario
*UsersApi* | [**users_me_scenarios_put**](docs/UsersApi.md#users_me_scenarios_put) | **PUT** /users/me/scenarios | Upsert account scenario
*VkApi* | [**profiles_profile_id_integrations_integration_oauth_callback_get**](docs/VkApi.md#profiles_profile_id_integrations_integration_oauth_callback_get) | **GET** /profiles/{profileId}/integrations/{integration}/oauth/callback | VK OAuth callback
*WebhooksApi* | [**profiles_profile_id_integrations_integration_webhooks_check_post**](docs/WebhooksApi.md#profiles_profile_id_integrations_integration_webhooks_check_post) | **POST** /profiles/{profileId}/integrations/{integration}/webhooks/check | Check webhook endpoint
*WebhooksApi* | [**profiles_profile_id_integrations_integration_webhooks_dlq_get**](docs/WebhooksApi.md#profiles_profile_id_integrations_integration_webhooks_dlq_get) | **GET** /profiles/{profileId}/integrations/{integration}/webhooks/dlq | List webhook DLQ
*WebhooksApi* | [**profiles_profile_id_integrations_integration_webhooks_dlq_redrive_post**](docs/WebhooksApi.md#profiles_profile_id_integrations_integration_webhooks_dlq_redrive_post) | **POST** /profiles/{profileId}/integrations/{integration}/webhooks/dlq/redrive | Redrive webhook DLQ
*WebhooksApi* | [**profiles_profile_id_integrations_integration_webhooks_get**](docs/WebhooksApi.md#profiles_profile_id_integrations_integration_webhooks_get) | **GET** /profiles/{profileId}/integrations/{integration}/webhooks | List webhooks
*WebhooksApi* | [**profiles_profile_id_integrations_integration_webhooks_id_delete**](docs/WebhooksApi.md#profiles_profile_id_integrations_integration_webhooks_id_delete) | **DELETE** /profiles/{profileId}/integrations/{integration}/webhooks/{id} | Delete webhook
*WebhooksApi* | [**profiles_profile_id_integrations_integration_webhooks_id_get**](docs/WebhooksApi.md#profiles_profile_id_integrations_integration_webhooks_id_get) | **GET** /profiles/{profileId}/integrations/{integration}/webhooks/{id} | Get webhook
*WebhooksApi* | [**profiles_profile_id_integrations_integration_webhooks_id_patch**](docs/WebhooksApi.md#profiles_profile_id_integrations_integration_webhooks_id_patch) | **PATCH** /profiles/{profileId}/integrations/{integration}/webhooks/{id} | Update webhook
*WebhooksApi* | [**profiles_profile_id_integrations_integration_webhooks_id_test_post**](docs/WebhooksApi.md#profiles_profile_id_integrations_integration_webhooks_id_test_post) | **POST** /profiles/{profileId}/integrations/{integration}/webhooks/{id}/test | Test webhook
*WebhooksApi* | [**profiles_profile_id_integrations_integration_webhooks_post**](docs/WebhooksApi.md#profiles_profile_id_integrations_integration_webhooks_post) | **POST** /profiles/{profileId}/integrations/{integration}/webhooks | Create webhook


## Documentation For Models

 - [AccountModuleItem](docs/AccountModuleItem.md)
 - [AccountModuleUsageItem](docs/AccountModuleUsageItem.md)
 - [AccountModulesListResponseBody](docs/AccountModulesListResponseBody.md)
 - [AccountModulesUsageResponseBody](docs/AccountModulesUsageResponseBody.md)
 - [AccountSettings](docs/AccountSettings.md)
 - [ApiScopeInfo](docs/ApiScopeInfo.md)
 - [ApiScopesListResponseBody](docs/ApiScopesListResponseBody.md)
 - [ApiTokenItem](docs/ApiTokenItem.md)
 - [ApiTokensListResponseBody](docs/ApiTokensListResponseBody.md)
 - [AuthTokenInputBody](docs/AuthTokenInputBody.md)
 - [AuthTokenOutputBody](docs/AuthTokenOutputBody.md)
 - [AuthorizationResultData](docs/AuthorizationResultData.md)
 - [BackupPayload](docs/BackupPayload.md)
 - [BackupProfile](docs/BackupProfile.md)
 - [BackupProfileAuth](docs/BackupProfileAuth.md)
 - [BackupUser](docs/BackupUser.md)
 - [BackupWebhook](docs/BackupWebhook.md)
 - [BotTokenInputBody](docs/BotTokenInputBody.md)
 - [BotTokenResponseBody](docs/BotTokenResponseBody.md)
 - [BotTokenSetResponseBody](docs/BotTokenSetResponseBody.md)
 - [ChangePasswordInputBody](docs/ChangePasswordInputBody.md)
 - [ChangePasswordResponseBody](docs/ChangePasswordResponseBody.md)
 - [ChatHistoryInputBody](docs/ChatHistoryInputBody.md)
 - [ContactsListHumaBody](docs/ContactsListHumaBody.md)
 - [ConversationActionInputBody](docs/ConversationActionInputBody.md)
 - [ConversationActionResponseBody](docs/ConversationActionResponseBody.md)
 - [ConversationAvatarInputBody](docs/ConversationAvatarInputBody.md)
 - [ConversationAvatarMeta](docs/ConversationAvatarMeta.md)
 - [ConversationAvatarResponseBody](docs/ConversationAvatarResponseBody.md)
 - [ConversationMeta](docs/ConversationMeta.md)
 - [CreateApiTokenInputBody](docs/CreateApiTokenInputBody.md)
 - [CreateProfileInputBody](docs/CreateProfileInputBody.md)
 - [CreateUserInputBody](docs/CreateUserInputBody.md)
 - [CreateUserResponseBody](docs/CreateUserResponseBody.md)
 - [DashboardKPI](docs/DashboardKPI.md)
 - [DashboardMessagePoint](docs/DashboardMessagePoint.md)
 - [DashboardMessages30d](docs/DashboardMessages30d.md)
 - [DashboardSetup](docs/DashboardSetup.md)
 - [DeleteMessageBody](docs/DeleteMessageBody.md)
 - [DeleteMessageInputBody](docs/DeleteMessageInputBody.md)
 - [EditMessageInputBody](docs/EditMessageInputBody.md)
 - [EmailVerifyConfirmInputBody](docs/EmailVerifyConfirmInputBody.md)
 - [EmailVerifyConfirmResponseBody](docs/EmailVerifyConfirmResponseBody.md)
 - [EmailVerifyRequestInputBody](docs/EmailVerifyRequestInputBody.md)
 - [EmailVerifyRequestResponseBody](docs/EmailVerifyRequestResponseBody.md)
 - [ErrorDetail](docs/ErrorDetail.md)
 - [ErrorModel](docs/ErrorModel.md)
 - [ForwardMessageInputBody](docs/ForwardMessageInputBody.md)
 - [InboxConversationItem](docs/InboxConversationItem.md)
 - [InboxConversationsListResponseBody](docs/InboxConversationsListResponseBody.md)
 - [InboxMessageItem](docs/InboxMessageItem.md)
 - [InboxMessagesListResponseBody](docs/InboxMessagesListResponseBody.md)
 - [InboxReadInputBody](docs/InboxReadInputBody.md)
 - [InboxReadResponseBody](docs/InboxReadResponseBody.md)
 - [LogoutBody](docs/LogoutBody.md)
 - [MarkReadInputBody](docs/MarkReadInputBody.md)
 - [MaxBlockedContactsResponseBody](docs/MaxBlockedContactsResponseBody.md)
 - [MaxChatSubscriptionInputBody](docs/MaxChatSubscriptionInputBody.md)
 - [MaxChatSubscriptionResponseBody](docs/MaxChatSubscriptionResponseBody.md)
 - [MaxChatsByIDsInputBody](docs/MaxChatsByIDsInputBody.md)
 - [MaxChatsByIDsResponseBody](docs/MaxChatsByIDsResponseBody.md)
 - [MaxContact](docs/MaxContact.md)
 - [MaxContactName](docs/MaxContactName.md)
 - [MaxContactsByIDsInputBody](docs/MaxContactsByIDsInputBody.md)
 - [MaxContactsByIDsResponseBody](docs/MaxContactsByIDsResponseBody.md)
 - [MaxContactsLastOnlineInputBody](docs/MaxContactsLastOnlineInputBody.md)
 - [MaxContactsLastOnlineResponseBody](docs/MaxContactsLastOnlineResponseBody.md)
 - [MaxCreateFolderInputBody](docs/MaxCreateFolderInputBody.md)
 - [MaxFolder](docs/MaxFolder.md)
 - [MaxFoldersResponseBody](docs/MaxFoldersResponseBody.md)
 - [MaxProfile](docs/MaxProfile.md)
 - [MaxReorderFoldersInputBody](docs/MaxReorderFoldersInputBody.md)
 - [MaxSession](docs/MaxSession.md)
 - [MaxSessionsResponseBody](docs/MaxSessionsResponseBody.md)
 - [MaxSetProfileInputBody](docs/MaxSetProfileInputBody.md)
 - [MaxSetProfileResponseBody](docs/MaxSetProfileResponseBody.md)
 - [MaxSetUserSettingsInputBody](docs/MaxSetUserSettingsInputBody.md)
 - [MaxUserSettingsPatch](docs/MaxUserSettingsPatch.md)
 - [MaxUserSettingsResponseBody](docs/MaxUserSettingsResponseBody.md)
 - [MaxUserSettingsState](docs/MaxUserSettingsState.md)
 - [MaxVideoResolveInputBody](docs/MaxVideoResolveInputBody.md)
 - [MaxVideoResolveResponseBody](docs/MaxVideoResolveResponseBody.md)
 - [MaxWSCallInputBody](docs/MaxWSCallInputBody.md)
 - [MaxWSCallResponseBody](docs/MaxWSCallResponseBody.md)
 - [MessageResponseBody](docs/MessageResponseBody.md)
 - [NotificationItem](docs/NotificationItem.md)
 - [NotificationsListResponseBody](docs/NotificationsListResponseBody.md)
 - [OAuthPendingCompleteEmailInputBody](docs/OAuthPendingCompleteEmailInputBody.md)
 - [OAuthProviderInfo](docs/OAuthProviderInfo.md)
 - [OAuthProvidersOutputBody](docs/OAuthProvidersOutputBody.md)
 - [OAuthResolveOutputBody](docs/OAuthResolveOutputBody.md)
 - [OAuthStartOutputBody](docs/OAuthStartOutputBody.md)
 - [Password2FAInputBody](docs/Password2FAInputBody.md)
 - [PhoneAuthCodeInputBody](docs/PhoneAuthCodeInputBody.md)
 - [PhoneAuthCodeResponseBody](docs/PhoneAuthCodeResponseBody.md)
 - [PhoneAuthPasswordInputBody](docs/PhoneAuthPasswordInputBody.md)
 - [PhoneAuthPasswordResponseBody](docs/PhoneAuthPasswordResponseBody.md)
 - [PhoneAuthStartInputBody](docs/PhoneAuthStartInputBody.md)
 - [PhoneAuthStartResponseBody](docs/PhoneAuthStartResponseBody.md)
 - [PollAuthorizationBody](docs/PollAuthorizationBody.md)
 - [PollAuthorizationInputBody](docs/PollAuthorizationInputBody.md)
 - [ProfileActionItem](docs/ProfileActionItem.md)
 - [ProfileActionsListResponseBody](docs/ProfileActionsListResponseBody.md)
 - [ProfileRenewOutputBody](docs/ProfileRenewOutputBody.md)
 - [ProfileResponse](docs/ProfileResponse.md)
 - [ProfilesListResponseBody](docs/ProfilesListResponseBody.md)
 - [QRStatusResponseBody](docs/QRStatusResponseBody.md)
 - [ReactionRef](docs/ReactionRef.md)
 - [ReactionStruct](docs/ReactionStruct.md)
 - [ReadChatBody](docs/ReadChatBody.md)
 - [ReadChatHumaInputBody](docs/ReadChatHumaInputBody.md)
 - [RebootProfileBody](docs/RebootProfileBody.md)
 - [RemoveReactionBody](docs/RemoveReactionBody.md)
 - [RemoveReactionHumaInputBody](docs/RemoveReactionHumaInputBody.md)
 - [RestoreDataInputBody](docs/RestoreDataInputBody.md)
 - [SearchContactInputBody](docs/SearchContactInputBody.md)
 - [SearchContactResponseBody](docs/SearchContactResponseBody.md)
 - [SendAuthorizationCodeBody](docs/SendAuthorizationCodeBody.md)
 - [SendAuthorizationCodeInputBody](docs/SendAuthorizationCodeInputBody.md)
 - [SendMessageInputBody](docs/SendMessageInputBody.md)
 - [SendReactionBody](docs/SendReactionBody.md)
 - [SendReactionHumaInputBody](docs/SendReactionHumaInputBody.md)
 - [SendReplyMessageInputBody](docs/SendReplyMessageInputBody.md)
 - [SendTypingInputBody](docs/SendTypingInputBody.md)
 - [SendTypingResponseBody](docs/SendTypingResponseBody.md)
 - [SessionActionInputBody](docs/SessionActionInputBody.md)
 - [SessionChatsResponseBody](docs/SessionChatsResponseBody.md)
 - [SessionClearResponseBody](docs/SessionClearResponseBody.md)
 - [SessionDataInputBody](docs/SessionDataInputBody.md)
 - [SessionEventsResponseBody](docs/SessionEventsResponseBody.md)
 - [SessionGetResponseBody](docs/SessionGetResponseBody.md)
 - [SessionItem](docs/SessionItem.md)
 - [SessionSetResponseBody](docs/SessionSetResponseBody.md)
 - [SessionStartInputBody](docs/SessionStartInputBody.md)
 - [SessionStartResponseBody](docs/SessionStartResponseBody.md)
 - [SessionStopResponseBody](docs/SessionStopResponseBody.md)
 - [SessionsListResponseBody](docs/SessionsListResponseBody.md)
 - [SetSettingsBody](docs/SetSettingsBody.md)
 - [SetSettingsInputBody](docs/SetSettingsInputBody.md)
 - [StartAuthorizationBody](docs/StartAuthorizationBody.md)
 - [StartAuthorizationInputBody](docs/StartAuthorizationInputBody.md)
 - [StateProfileBody](docs/StateProfileBody.md)
 - [StatusResponseBody](docs/StatusResponseBody.md)
 - [SyncProfileInputBody](docs/SyncProfileInputBody.md)
 - [SyncProfileResponseBody](docs/SyncProfileResponseBody.md)
 - [TelegramPhoneVerifyConfirmInputBody](docs/TelegramPhoneVerifyConfirmInputBody.md)
 - [TelegramPhoneVerifyConfirmResponseBody](docs/TelegramPhoneVerifyConfirmResponseBody.md)
 - [TelegramPhoneVerifyStartInputBody](docs/TelegramPhoneVerifyStartInputBody.md)
 - [TelegramPhoneVerifyStartResponseBody](docs/TelegramPhoneVerifyStartResponseBody.md)
 - [TopUpInputBody](docs/TopUpInputBody.md)
 - [TopUpResponseBody](docs/TopUpResponseBody.md)
 - [TopUpStatusResponseBody](docs/TopUpStatusResponseBody.md)
 - [TopUpStatusResponseItem](docs/TopUpStatusResponseItem.md)
 - [TopUpsListResponseBody](docs/TopUpsListResponseBody.md)
 - [TransactionItem](docs/TransactionItem.md)
 - [TransactionsListResponseBody](docs/TransactionsListResponseBody.md)
 - [UnreadCountResponseBody](docs/UnreadCountResponseBody.md)
 - [UpdateAccountModuleInputBody](docs/UpdateAccountModuleInputBody.md)
 - [UpdateAccountModuleResponseBody](docs/UpdateAccountModuleResponseBody.md)
 - [UpdateProfileAutoRenewInputBody](docs/UpdateProfileAutoRenewInputBody.md)
 - [UpdateProfileInputBody](docs/UpdateProfileInputBody.md)
 - [UserDashboardSummaryResponseBody](docs/UserDashboardSummaryResponseBody.md)
 - [UserExistsResponseBody](docs/UserExistsResponseBody.md)
 - [UserInboxAvailableProfile](docs/UserInboxAvailableProfile.md)
 - [UserInboxConversationActionInputBody](docs/UserInboxConversationActionInputBody.md)
 - [UserInboxConversationActionResponseBody](docs/UserInboxConversationActionResponseBody.md)
 - [UserInboxConversationAvatarInputBody](docs/UserInboxConversationAvatarInputBody.md)
 - [UserInboxConversationAvatarResponseBody](docs/UserInboxConversationAvatarResponseBody.md)
 - [UserInboxConversationItem](docs/UserInboxConversationItem.md)
 - [UserInboxConversationMeta](docs/UserInboxConversationMeta.md)
 - [UserInboxConversationTitleInputBody](docs/UserInboxConversationTitleInputBody.md)
 - [UserInboxConversationTitleResponseBody](docs/UserInboxConversationTitleResponseBody.md)
 - [UserInboxConversationsListResponseBody](docs/UserInboxConversationsListResponseBody.md)
 - [UserInboxMessageItem](docs/UserInboxMessageItem.md)
 - [UserInboxMessagesListResponseBody](docs/UserInboxMessagesListResponseBody.md)
 - [UserInboxReadInputBody](docs/UserInboxReadInputBody.md)
 - [UserInboxReadResponseBody](docs/UserInboxReadResponseBody.md)
 - [UserInboxSendInputBody](docs/UserInboxSendInputBody.md)
 - [UserInboxSendResponseBody](docs/UserInboxSendResponseBody.md)
 - [UserMeResponseBody](docs/UserMeResponseBody.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization


Authentication schemes defined for the API:
<a id="ApiKeyAuth"></a>
### ApiKeyAuth

- **Type**: API key
- **API key parameter name**: X-Profile-Token
- **Location**: HTTP header

<a id="BearerAuth"></a>
### BearerAuth

- **Type**: Bearer authentication (JWT)


## Author




