---
title: "Update transfer_to_mobile_operator tool configuration"
method: PATCH
path: "/agents/{agent_id}/tools/transfer-to-operator"
tags: ["Agent Tools"]
---

# Update transfer_to_mobile_operator tool configuration

`PATCH /agents/{agent_id}/tools/transfer-to-operator`

Update configuration for the transfer_to_mobile_operator tool.

    Allows you to configure:
    - Enable/disable the tool
    - Operator availability hours
    - Enabled departments (which departments can receive transfers)

    Schedule format for available_hours:
    ```json
    {
      "monday": ["09:00 - 18:00"],
      "tuesday": ["09:00 - 18:00"],
      ...
    }
    ```

    Note: This tool is mutually exclusive with transfer_to_phone.
    Attempting to enable this while transfer_to_phone is enabled will fail.

    Authentication:
    - API key with READ_WRITE permission

## Path parameters

- `agent_id` string, uuid, required

## Request body

- object — Schema for updating transfer_to_mobile_operator tool configuration.
  - `is_enabled` boolean, nullable — Enable or disable the tool
  - `available_hours` object, nullable — Operator availability hours (schedule format: {monday: ['09:00 - 18:00'], ...})
  - `enabled_departments` string[], nullable — List of enabled department UUIDs (empty list = all departments available)

## Response `200`

Successfully updated configuration

- object
  - `ok` boolean
  - `data` object
    - `name` string
    - `display_name` string
    - `description` string
    - `category` string
    - `category_display_name` string
    - `scope` string
    - `enabled` boolean
    - `is_configured` boolean
    - `can_disable` boolean
    - `icon_url` string
    - `version` string
    - `config_fields` object[]

## Other responses

- `400` — Invalid configuration or mutual exclusivity violation
- `401` — Invalid or missing API key
- `403` — Insufficient permissions
- `404` — Resource not found

---

[API](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1.md) · [All operations](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yourang/yourang-ai-external-api-v1/versions/49680ee64400/schema)
