diff --git a/src/pages/management/changelog/index.mdx b/src/pages/management/changelog/index.mdx index a1721b455..9fb123677 100644 --- a/src/pages/management/changelog/index.mdx +++ b/src/pages/management/changelog/index.mdx @@ -41,6 +41,7 @@ Use [**Update an account**](/authorization/global-accounts-api#tag/Accounts/path ### Bots - The `X-Author-Id` mechanism for bot authorization is no longer supported. The only way to authorize bots is by using bot authorization tokens. +- Bots have a new `type` property. ### Customer bans diff --git a/src/pages/management/configuration-api/index.mdx b/src/pages/management/configuration-api/index.mdx index 6af19ef90..46d8bcceb 100644 --- a/src/pages/management/configuration-api/index.mdx +++ b/src/pages/management/configuration-api/index.mdx @@ -1271,6 +1271,7 @@ Creates a new bot. To make the bot available for receiving chats or webhooks, us | `groups` | No | `object[]` | Groups the Bot belongs to. | | `groups[].id` | No | `int` | Group ID; required only when `group`'s included. | | `groups[].priority`**1** | Yes | `string` | Bot's priority in a group; required only when `group`'s included. | +| `type` | No | `string` | A custom value to categorize or identify the bot. Defaults to `chatbot`. | | `work_scheduler` | No | `object` | Work scheduler options to set for the new Bot. See [**Create Agent**](#create-agent) for details. | | `work_scheduler.timezone` | Yes | `string` | The time zone in which the Bot's work scheduler should operate. | | `owner_client_id`**2** | Yes | `string` | Required only when authorizing via [PATs](/authorization/agent-authorization#personal-access-tokens). When you provide this param while authorizing with a Bearer Token, the `client_id` associated with the Bearer Token will be ignored, and provided `owner_client_id` will be used instead. | @@ -1502,6 +1503,7 @@ Updates an existing bot. | `groups[].priority`**1** | Yes | `string` | Bot's priority in the group; required only when `groups` is included. | | `default_group_priority`**1** | No | `string` | The default routing priority for a group without defined priority. | | `job_title` | No | `string` | Bot's job title | +| `type` | No | `string` | A custom value to categorize or identify the bot. | | `work_scheduler` | No | `object` | Work scheduler options to set for the new bot. See [**Create Agent**](#create-agent) for details. | | `work_scheduler.timezone` | Yes | `string` | The time zone in which the bot's work scheduler should operate. | diff --git a/src/pages/management/configuration-api/v3.7/index.mdx b/src/pages/management/configuration-api/v3.7/index.mdx index 18c9d6d75..d232b07ce 100644 --- a/src/pages/management/configuration-api/v3.7/index.mdx +++ b/src/pages/management/configuration-api/v3.7/index.mdx @@ -1272,6 +1272,7 @@ Creates a new bot. To make the bot available for receiving chats or webhooks, us | `groups` | No | `object[]` | Groups the Bot belongs to. | | `groups[].id` | No | `int` | Group ID; required only when `group`'s included. | | `groups[].priority`**1** | Yes | `string` | Bot's priority in a group; required only when `group`'s included. | +| `type` | No | `string` | A custom value to categorize or identify the bot. Defaults to `chatbot`. | `work_scheduler` | No | `object` | Work scheduler options to set for the new Bot. See [**Create Agent**](#create-agent) for details. | | `work_scheduler.timezone` | Yes | `string` | The time zone in which the Bot's work scheduler should operate. | | `owner_client_id`**2** | Yes | `string` | Required only when authorizing via [PATs](/authorization/agent-authorization#personal-access-tokens). When you provide this param while authorizing with a Bearer Token, the `client_id` associated with the Bearer Token will be ignored, and provided `owner_client_id` will be used instead. | @@ -1503,6 +1504,7 @@ Updates an existing bot. | `groups[].priority`**1** | Yes | `string` | Bot's priority in the group; required only when `groups` is included. | | `default_group_priority`**1** | No | `string` | The default routing priority for a group without defined priority. | | `job_title` | No | `string` | Bot's job title | +| `type` | No | `string` | A custom value to categorize or identify the bot. | | `work_scheduler` | No | `object` | Work scheduler options to set for the new bot. See [**Create Agent**](#create-agent) for details. | | `work_scheduler.timezone` | Yes | `string` | The time zone in which the bot's work scheduler should operate. |