> ## 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

> Transfer User. Zoho CRM Users Transfer User Transfer reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Transfer User.

<Info>
  Tool ID: `zoho_crm_users_transfer_user_transfer`
</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_users_transfer_user_transfer',
  {
    "userId": "user_123",
    "transfer_and_delete": [
      {
        "move_subordinate": {
          "id": "id_123"
        },
        "transfer": {
          "id": "id_123"
        }
      }
    ]
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_users_transfer_user_transfer --input '{
  "userId": "user_123",
  "transfer_and_delete": [
    {
      "move_subordinate": {
        "id": "id_123"
      },
      "transfer": {
        "id": "id_123"
      }
    }
  ]
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "transfer_and_delete": [
      {
        "status": "example",
        "code": "SUCCESS",
        "message": "Example message",
        "details": {
          "job_id": "job_123",
          "id": "id_123"
        }
      }
    ]
  }
}
```

Use `deepline tools get zoho_crm_users_transfer_user_transfer --json` for the latest machine-readable contract.

## Input reference

Request body for transferring and deleting user data

| Name                          | Type     | Required | Default | Details                                                   |
| ----------------------------- | -------- | -------- | ------- | --------------------------------------------------------- |
| `payload.userId`              | `string` | Yes      | —       | User ID to be transferred and deleted Format: `int64`.    |
| `payload.transfer_and_delete` | `array`  | Yes      | —       | Array of transfer and delete operations Maximum items: 1. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Request body for transferring and deleting user data",
    "properties": {
      "userId": {
        "type": "string",
        "description": "User ID to be transferred and deleted",
        "format": "int64"
      },
      "transfer_and_delete": {
        "type": "array",
        "description": "Array of transfer and delete operations",
        "maxItems": 1,
        "items": {
          "type": "object",
          "description": "Transfer and delete operation details",
          "properties": {
            "move_subordinate": {
              "type": "object",
              "description": "Details of the user to whom subordinates will be moved",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "User ID to move subordinates to",
                  "maxLength": 19
                }
              },
              "required": [
                "id"
              ],
              "additionalProperties": false
            },
            "transfer": {
              "type": "object",
              "description": "Transfer settings for records, assignments, and criteria",
              "properties": {
                "records": {
                  "type": "boolean",
                  "description": "Whether to transfer records"
                },
                "assignment": {
                  "type": "boolean",
                  "description": "Whether to transfer assignments"
                },
                "criteria": {
                  "type": "boolean",
                  "description": "Whether to transfer criteria"
                },
                "id": {
                  "type": "string",
                  "description": "User ID to transfer data to",
                  "maxLength": 19
                }
              },
              "required": [
                "id"
              ],
              "additionalProperties": false
            }
          },
          "required": [
            "move_subordinate",
            "transfer"
          ],
          "additionalProperties": false
        }
      }
    },
    "required": [
      "userId",
      "transfer_and_delete"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                               | Type        | Required | Default | Details                                                                  |
| -------------------------------------------------- | ----------- | -------- | ------- | ------------------------------------------------------------------------ |
| `result.data`                                      | `object`    | Yes      | —       | Response body for successful user transfer and delete operation          |
| `result.data.transfer_and_delete`                  | `array`     | Yes      | —       | Array containing transfer and delete operation results Maximum items: 1. |
| `result.data.transfer_and_delete[].status`         | `string`    | Yes      | —       | Status of the operation Maximum length: 100.                             |
| `result.data.transfer_and_delete[].code`           | `"SUCCESS"` | Yes      | —       | Response code indicating operation scheduled Allowed: `SUCCESS`.         |
| `result.data.transfer_and_delete[].message`        | `string`    | Yes      | —       | Human-readable message describing the result Maximum length: 500.        |
| `result.data.transfer_and_delete[].details`        | `object`    | Yes      | —       | Additional details about the scheduled operation                         |
| `result.data.transfer_and_delete[].details.job_id` | `string`    | Yes      | —       | Unique identifier for the scheduled job Maximum length: 50.              |
| `result.data.transfer_and_delete[].details.id`     | `string`    | Yes      | —       | User identifier Maximum length: 19.                                      |
| `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": "Response body for successful user transfer and delete operation",
        "properties": {
          "transfer_and_delete": {
            "type": "array",
            "description": "Array containing transfer and delete operation results",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Transfer and delete operation result",
              "properties": {
                "status": {
                  "type": "string",
                  "description": "Status of the operation",
                  "maxLength": 100
                },
                "code": {
                  "type": "string",
                  "description": "Response code indicating operation scheduled",
                  "enum": [
                    "SUCCESS"
                  ]
                },
                "message": {
                  "type": "string",
                  "description": "Human-readable message describing the result",
                  "maxLength": 500
                },
                "details": {
                  "type": "object",
                  "description": "Additional details about the scheduled operation",
                  "properties": {
                    "job_id": {
                      "type": "string",
                      "description": "Unique identifier for the scheduled job",
                      "maxLength": 50
                    },
                    "id": {
                      "type": "string",
                      "description": "User identifier",
                      "maxLength": 19
                    }
                  },
                  "required": [
                    "job_id",
                    "id"
                  ],
                  "additionalProperties": false
                }
              },
              "required": [
                "status",
                "code",
                "message",
                "details"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "transfer_and_delete"
        ],
        "additionalProperties": false
      },
      "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)
