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

> PUT /settings/tags. Zoho CRM Tags Put Tags reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

PUT /settings/tags.

<Info>
  Tool ID: `zoho_crm_tags_put_tags`
</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_tags_put_tags',
  {
    "module": "module_api_name",
    "tags": [
      {
        "name": "Example"
      }
    ]
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_tags_put_tags --input '{
  "module": "module_api_name",
  "tags": [
    {
      "name": "Example"
    }
  ]
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "tags": [
      {
        "code": "example",
        "details": {
          "created_time": "2026-01-15T12:00:00Z",
          "modified_time": "2026-01-15T12:00:00Z",
          "name": "Example"
        },
        "message": "Example message"
      }
    ]
  }
}
```

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

## Input reference

Request body schema

| Name             | Type                | Required | Default | Details                                     |
| ---------------- | ------------------- | -------- | ------- | ------------------------------------------- |
| `payload.module` | `"module_api_name"` | Yes      | —       | Module api name Allowed: `module_api_name`. |
| `payload.tags`   | `array`             | Yes      | —       | Root key (Required) Maximum items: 1.       |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Request body schema",
    "properties": {
      "module": {
        "type": "string",
        "description": "Module api name",
        "enum": [
          "module_api_name"
        ]
      },
      "tags": {
        "type": "array",
        "description": "Root key (Required)",
        "maxItems": 1,
        "items": {
          "type": "object",
          "description": "Root key",
          "properties": {
            "name": {
              "type": "string",
              "description": "Tag name (Required)",
              "maxLength": 26
            },
            "color_code": {
              "type": [
                "string",
                "null"
              ],
              "description": "Tag color code",
              "maxLength": 7
            }
          },
          "required": [
            "name"
          ],
          "additionalProperties": true
        }
      }
    },
    "required": [
      "module",
      "tags"
    ],
    "additionalProperties": true
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                          | Type             | Required | Default | Details                                                         |
| --------------------------------------------- | ---------------- | -------- | ------- | --------------------------------------------------------------- |
| `result.data`                                 | `object`         | Yes      | —       | Success Response when Tags update success                       |
| `result.data.tags`                            | `array`          | No       | —       | Field: tags Maximum items: 1.                                   |
| `result.data.tags[].code`                     | `string`         | No       | —       | Field: code Maximum length: 255.                                |
| `result.data.tags[].details`                  | `object`         | No       | —       | Nested schema for details                                       |
| `result.data.tags[].details.created_time`     | `string`         | No       | —       | Field: created\_time Format: `date-time`. Maximum length: 255.  |
| `result.data.tags[].details.modified_time`    | `string`         | No       | —       | Field: modified\_time Format: `date-time`. Maximum length: 255. |
| `result.data.tags[].details.name`             | `string`         | No       | —       | Field: name Maximum length: 255.                                |
| `result.data.tags[].details.modified_by`      | `object`         | No       | —       | Nested schema for modified\_by                                  |
| `result.data.tags[].details.modified_by.name` | `string`         | No       | —       | Field: name Maximum length: 255.                                |
| `result.data.tags[].details.modified_by.id`   | `string`         | No       | —       | Field: id Maximum length: 255.                                  |
| `result.data.tags[].details.id`               | `string`         | No       | —       | Field: id Maximum length: 255.                                  |
| `result.data.tags[].details.created_by`       | `object`         | No       | —       | Nested schema for created\_by                                   |
| `result.data.tags[].details.created_by.name`  | `string`         | No       | —       | Field: name Maximum length: 255.                                |
| `result.data.tags[].details.created_by.id`    | `string`         | No       | —       | Field: id Maximum length: 255.                                  |
| `result.data.tags[].details.color_code`       | `string \| null` | No       | —       | Field: color\_code Maximum length: 255.                         |
| `result.data.tags[].message`                  | `string`         | No       | —       | Field: message Maximum length: 255.                             |
| `result.data.tags[].status`                   | `string`         | No       | —       | Field: status Maximum length: 255.                              |
| `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": "Success Response when Tags update success",
        "properties": {
          "tags": {
            "type": "array",
            "description": "Field: tags",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Nested schema for tags",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Field: code",
                  "maxLength": 255
                },
                "details": {
                  "type": "object",
                  "description": "Nested schema for details",
                  "properties": {
                    "created_time": {
                      "type": "string",
                      "description": "Field: created_time",
                      "maxLength": 255,
                      "format": "date-time"
                    },
                    "modified_time": {
                      "type": "string",
                      "description": "Field: modified_time",
                      "maxLength": 255,
                      "format": "date-time"
                    },
                    "name": {
                      "type": "string",
                      "description": "Field: name",
                      "maxLength": 255
                    },
                    "modified_by": {
                      "type": "object",
                      "description": "Nested schema for modified_by",
                      "properties": {
                        "name": {
                          "type": "string",
                          "description": "Field: name",
                          "maxLength": 255
                        },
                        "id": {
                          "type": "string",
                          "description": "Field: id",
                          "maxLength": 255
                        }
                      },
                      "additionalProperties": false
                    },
                    "id": {
                      "type": "string",
                      "description": "Field: id",
                      "maxLength": 255
                    },
                    "created_by": {
                      "type": "object",
                      "description": "Nested schema for created_by",
                      "properties": {
                        "name": {
                          "type": "string",
                          "description": "Field: name",
                          "maxLength": 255
                        },
                        "id": {
                          "type": "string",
                          "description": "Field: id",
                          "maxLength": 255
                        }
                      },
                      "additionalProperties": false
                    },
                    "color_code": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Field: color_code",
                      "maxLength": 255
                    }
                  },
                  "additionalProperties": false
                },
                "message": {
                  "type": "string",
                  "description": "Field: message",
                  "maxLength": 255
                },
                "status": {
                  "type": "string",
                  "description": "Field: status",
                  "maxLength": 255
                }
              },
              "additionalProperties": false
            }
          }
        },
        "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)
