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

> Enable multi-currency. Zoho CRM Currencies Enable Currency reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Enable multi-currency.

<Info>
  Tool ID: `zoho_crm_currencies_enable_currency`
</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_currencies_enable_currency --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "base_currency": {
      "code": "example",
      "details": {
        "id": "id_123"
      },
      "message": "Example message",
      "status": "example"
    }
  }
}
```

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

## Input reference

Payload for creating and enabling base currency.

| Name                    | Type     | Required | Default | Details                                   |
| ----------------------- | -------- | -------- | ------- | ----------------------------------------- |
| `payload.base_currency` | `object` | Yes      | —       | Base currency details for initialization. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Payload for creating and enabling base currency.",
    "properties": {
      "base_currency": {
        "type": "object",
        "description": "Base currency details for initialization.",
        "properties": {
          "prefix_symbol": {
            "type": "boolean",
            "description": "If true, currency symbol is shown before value."
          },
          "iso_code": {
            "type": "string",
            "description": "ISO currency code (e.g., USD, INR, EUR).",
            "maxLength": 255
          },
          "symbol": {
            "type": "string",
            "description": "Currency symbol to display.",
            "maxLength": 255
          },
          "exchange_rate": {
            "type": "string",
            "description": "Value of currency relative to base currency.",
            "maxLength": 50,
            "pattern": "^[0-9]{1,9}(\\.[0-9]{1,9})?$"
          },
          "format": {
            "type": "object",
            "description": "Currency formatting configuration.",
            "properties": {
              "numeral_system": {
                "type": "string",
                "description": "Indicates whether the currency should use the Indian or International numbering format.",
                "enum": [
                  "Indian",
                  "International"
                ]
              },
              "decimal_places": {
                "type": "string",
                "description": "Number of decimal places to display for the currency value.",
                "enum": [
                  "0",
                  "2",
                  "3",
                  "4",
                  "5",
                  "6"
                ]
              },
              "decimal_separator": {
                "type": "string",
                "description": "Character used to separate whole numbers from fractional decimal values.",
                "enum": [
                  "Comma",
                  "Period"
                ]
              },
              "thousand_separator": {
                "type": "string",
                "description": "Character used to group thousands in numeric values.",
                "enum": [
                  "Comma",
                  "Period",
                  "Space"
                ]
              }
            },
            "additionalProperties": false
          },
          "name": {
            "type": "string",
            "description": "Full name of the currency (e.g., US Dollar - USD).",
            "maxLength": 255
          }
        },
        "required": [
          "iso_code",
          "exchange_rate"
        ],
        "additionalProperties": false
      }
    },
    "required": [
      "base_currency"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                   | Type     | Required | Default | Details                                               |
| -------------------------------------- | -------- | -------- | ------- | ----------------------------------------------------- |
| `result.data`                          | `object` | Yes      | —       | Successful enable response                            |
| `result.data.base_currency`            | `object` | Yes      | —       | Success response object.                              |
| `result.data.base_currency.code`       | `string` | Yes      | —       | Result code, e.g., SUCCESS. Maximum length: 50.       |
| `result.data.base_currency.details`    | `object` | Yes      | —       | Additional response details.                          |
| `result.data.base_currency.details.id` | `string` | No       | —       | ID of the created base currency. Maximum length: 255. |
| `result.data.base_currency.message`    | `string` | Yes      | —       | Human-readable success message. Maximum length: 255.  |
| `result.data.base_currency.status`     | `string` | Yes      | —       | Operation status, e.g., success. Maximum length: 50.  |
| `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": "Successful enable response",
        "properties": {
          "base_currency": {
            "type": "object",
            "description": "Success response object.",
            "properties": {
              "code": {
                "type": "string",
                "description": "Result code, e.g., SUCCESS.",
                "maxLength": 50
              },
              "details": {
                "type": "object",
                "description": "Additional response details.",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "ID of the created base currency.",
                    "maxLength": 255
                  }
                },
                "additionalProperties": false
              },
              "message": {
                "type": "string",
                "description": "Human-readable success message.",
                "maxLength": 255
              },
              "status": {
                "type": "string",
                "description": "Operation status, e.g., success.",
                "maxLength": 50
              }
            },
            "required": [
              "code",
              "details",
              "message",
              "status"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "base_currency"
        ],
        "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)
