> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Zoho CRM: README

> Change owner for multiple records. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Change owner for multiple records.

<Info>
  Tool ID: `zoho_crm_change_owner_bulk_change_owner`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'zoho_crm_change_owner_bulk_change_owner',
  {
    "module": "example",
    "ids": [
      "id_123"
    ],
    "owner": {
      "id": "id_123"
    }
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute zoho_crm_change_owner_bulk_change_owner --input '{
  "module": "example",
  "ids": [
    "id_123"
  ],
  "owner": {
    "id": "id_123"
  }
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get zoho_crm_change_owner_bulk_change_owner --json` for the complete live contract.

## Input reference

Request body for changing the owner of multiple records

| Name                      | Type      | Required | Default | Details                                                 |
| ------------------------- | --------- | -------- | ------- | ------------------------------------------------------- |
| `payload.module`          | `string`  | Yes      | —       | The API name of the module Maximum length: 255.         |
| `payload.ids`             | `array`   | Yes      | —       | Array of record IDs to change owner Maximum items: 500. |
| `payload.owner`           | `object`  | Yes      | —       | The new owner information                               |
| `payload.notify`          | `boolean` | No       | —       | Whether to notify the new owner                         |
| `payload.related_modules` | `array`   | No       | —       | Related modules to update Maximum items: 5.             |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Request body for changing the owner of multiple records",
    "properties": {
      "module": {
        "type": "string",
        "description": "The API name of the module",
        "maxLength": 255
      },
      "ids": {
        "type": "array",
        "description": "Array of record IDs to change owner",
        "maxItems": 500,
        "items": {
          "type": "string",
          "description": "Record ID",
          "maxLength": 19
        }
      },
      "owner": {
        "type": "object",
        "description": "The new owner information",
        "properties": {
          "id": {
            "type": "string",
            "description": "The ID of the new owner",
            "maxLength": 19
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false
      },
      "notify": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "Whether to notify the new owner"
      },
      "related_modules": {
        "type": "array",
        "description": "Related modules to update",
        "maxItems": 5,
        "items": {
          "type": "object",
          "description": "Related module information",
          "properties": {
            "api_name": {
              "type": "string",
              "description": "The API name of the related module",
              "enum": [
                "Tasks",
                "Events",
                "Calls",
                "Contacts",
                "Deals"
              ]
            },
            "id": {
              "type": "string",
              "description": "The ID of the related module record",
              "maxLength": 19
            }
          },
          "additionalProperties": false
        }
      }
    },
    "required": [
      "module",
      "ids",
      "owner"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name          | Type     | Required | Default | Details                                        |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      | —       | Provider response payload.                     |
| `result.meta` | `object` | No       | —       | Additional response metadata (status, paging). |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "additionalProperties": true
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
