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

> POST /settings/tags/{id}/actions/merge. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

POST /settings/tags/\{id}/actions/merge.

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

## Run this action

This action has conditional or dynamic input fields that cannot be represented by a reliable static example.

Inspect the live contract before executing it:

```bash theme={null}
deepline tools get zoho_crm_tags_actions_post_merge --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": "example",
          "modified_time": "example",
          "modified_by": {}
        },
        "message": "Example message"
      }
    ]
  }
}
```

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

## Input reference

Request body schema

| Name           | Type     | Required | Default | Details                                |
| -------------- | -------- | -------- | ------- | -------------------------------------- |
| `payload.id`   | `string` | Yes      | —       | Path parameter: id Maximum length: 19. |
| `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": {
      "id": {
        "type": "string",
        "description": "Path parameter: id",
        "maxLength": 19
      },
      "tags": {
        "type": "array",
        "description": "root key (Required)",
        "maxItems": 1,
        "items": {
          "type": "object",
          "description": "root key",
          "properties": {
            "name": {
              "type": [
                "string",
                "null"
              ],
              "description": "tag name",
              "maxLength": 25
            },
            "modified_time": {
              "type": [
                "string",
                "null"
              ],
              "description": "merged time",
              "maxLength": 25,
              "format": "date-time"
            },
            "color_code": {
              "type": [
                "string",
                "null"
              ],
              "description": "tag color",
              "maxLength": 7
            },
            "conflict_id": {
              "type": [
                "string",
                "null"
              ],
              "description": "merged tag id",
              "maxLength": 19
            }
          },
          "additionalProperties": false
        }
      }
    },
    "required": [
      "id",
      "tags"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                          | Type             | Required | Default | Details                                        |
| --------------------------------------------- | ---------------- | -------- | ------- | ---------------------------------------------- |
| `result.data`                                 | `object`         | Yes      | —       | success response when tags merged successfully |
| `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 Maximum length: 255.      |
| `result.data.tags[].details.modified_time`    | `string`         | No       | —       | Field: modified\_time 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 merged successfully",
        "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
                    },
                    "modified_time": {
                      "type": "string",
                      "description": "Field: modified_time",
                      "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)
