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

> List currencies. Zoho CRM Currencies Get Currencies reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

List currencies.

<Info>
  Tool ID: `zoho_crm_currencies_get_currencies`
</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_currencies_get_currencies',
  {},
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_currencies_get_currencies --input '{}' --json
```

## Example response

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

## Input reference

Retrieves all added currencies in the organization.

This action does not require input fields.

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieves all added currencies in the organization.",
    "properties": {},
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                  | Type                                     | Required | Default | Details                                                                                                                                                                     |
| ----------------------------------------------------- | ---------------------------------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result.data`                                         | `object`                                 | Yes      | —       | Response object containing a list of currencies.                                                                                                                            |
| `result.data.currencies`                              | `array`                                  | Yes      | —       | List of currencies configured for the organization. Maximum items: 180.                                                                                                     |
| `result.data.currencies[].prefix_symbol`              | `boolean`                                | Yes      | —       | Indicates whether the currency symbol is shown before the amount.                                                                                                           |
| `result.data.currencies[].format`                     | `object`                                 | Yes      | —       | Currency formatting rules including numeral style, decimals and separators.                                                                                                 |
| `result.data.currencies[].format.numeral_system`      | `"Indian" \| "International"`            | Yes      | —       | Number formatting style: Indian (1,00,000) vs International (100,000). Allowed: `Indian`, `International`.                                                                  |
| `result.data.currencies[].format.decimal_places`      | `"0" \| "2" \| "3" \| "4" \| "5" \| "6"` | Yes      | —       | Number of decimal digits displayed for the currency. Allowed: `0`, `2`, `3`, `4`, `5`, `6`.                                                                                 |
| `result.data.currencies[].format.decimal_separator`   | `"Comma" \| "Period"`                    | Yes      | —       | Symbol used to separate the fractional decimal part. Allowed: `Comma`, `Period`.                                                                                            |
| `result.data.currencies[].format.thousand_separator`  | `"Comma" \| "Period" \| "Space"`         | Yes      | —       | Symbol used to group thousands in numeric values. Allowed: `Comma`, `Period`, `Space`.                                                                                      |
| `result.data.currencies[].exchange_rate`              | `string`                                 | Yes      | —       | Exchange rate relative to the base currency (supports up to 9 digits and 9 decimal places). Maximum length: 18. Pattern: `^[0-9]&#123;1,9&#125;(\.[0-9]&#123;1,9&#125;)?$`. |
| `result.data.currencies[].is_active`                  | `boolean`                                | Yes      | —       | Indicates whether the currency is active and available for use.                                                                                                             |
| `result.data.currencies[].exchange_rate_auto_update`  | `boolean`                                | No       | —       | Indicates whether the currency has the automated exchange rate option enabled or not.                                                                                       |
| `result.data.currencies[].iso_code`                   | `string`                                 | Yes      | —       | ISO standard currency code. Example: INR, USD. Maximum length: 255.                                                                                                         |
| `result.data.currencies[].symbol`                     | `string`                                 | Yes      | —       | Symbol used to represent the currency. Maximum length: 255.                                                                                                                 |
| `result.data.currencies[].name`                       | `string`                                 | Yes      | —       | Name of the currency. Example: Indian Rupee. Maximum length: 255.                                                                                                           |
| `result.data.currencies[].is_base`                    | `boolean`                                | Yes      | —       | Indicates whether this currency is the organization's base currency.                                                                                                        |
| `result.data.currencies[].id`                         | `string`                                 | Yes      | —       | Unique identifier of the currency. Maximum length: 255.                                                                                                                     |
| `result.data.currencies[].created_by`                 | `object`                                 | Yes      | —       | User who created the currency record.                                                                                                                                       |
| `result.data.currencies[].created_by.name`            | `string`                                 | Yes      | —       | Name of the user who created the record. Maximum length: 255.                                                                                                               |
| `result.data.currencies[].created_by.id`              | `string`                                 | Yes      | —       | User ID of the record creator. Maximum length: 255.                                                                                                                         |
| `result.data.currencies[].modified_by`                | `object`                                 | Yes      | —       | User who last updated the currency record.                                                                                                                                  |
| `result.data.currencies[].modified_by.name`           | `string`                                 | Yes      | —       | Name of the user who modified the record. Maximum length: 255.                                                                                                              |
| `result.data.currencies[].modified_by.id`             | `string`                                 | Yes      | —       | User ID of the last modifier. Maximum length: 255.                                                                                                                          |
| `result.data.currencies[].modified_time`              | `string`                                 | Yes      | —       | Timestamp when the currency was last modified. Format: `date-time`.                                                                                                         |
| `result.data.currencies[].created_time`               | `string`                                 | Yes      | —       | Timestamp when the currency was first created. Format: `date-time`.                                                                                                         |
| `result.data.currencies[].exchange_rate_updated_time` | `string`                                 | No       | —       | Timestamp when the exchange rate was last modified. Format: `date-time`.                                                                                                    |
| `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 object containing a list of currencies.",
        "properties": {
          "currencies": {
            "type": "array",
            "description": "List of currencies configured for the organization.",
            "maxItems": 180,
            "items": {
              "type": "object",
              "description": "Currency object containing metadata and format details.",
              "properties": {
                "prefix_symbol": {
                  "type": "boolean",
                  "description": "Indicates whether the currency symbol is shown before the amount."
                },
                "format": {
                  "type": "object",
                  "description": "Currency formatting rules including numeral style, decimals and separators.",
                  "properties": {
                    "numeral_system": {
                      "type": "string",
                      "description": "Number formatting style: Indian (1,00,000) vs International (100,000).",
                      "enum": [
                        "Indian",
                        "International"
                      ]
                    },
                    "decimal_places": {
                      "type": "string",
                      "description": "Number of decimal digits displayed for the currency.",
                      "enum": [
                        "0",
                        "2",
                        "3",
                        "4",
                        "5",
                        "6"
                      ]
                    },
                    "decimal_separator": {
                      "type": "string",
                      "description": "Symbol used to separate the fractional decimal part.",
                      "enum": [
                        "Comma",
                        "Period"
                      ]
                    },
                    "thousand_separator": {
                      "type": "string",
                      "description": "Symbol used to group thousands in numeric values.",
                      "enum": [
                        "Comma",
                        "Period",
                        "Space"
                      ]
                    }
                  },
                  "required": [
                    "numeral_system",
                    "decimal_places",
                    "decimal_separator",
                    "thousand_separator"
                  ],
                  "additionalProperties": false
                },
                "exchange_rate": {
                  "type": "string",
                  "description": "Exchange rate relative to the base currency (supports up to 9 digits and 9 decimal places).",
                  "maxLength": 18,
                  "pattern": "^[0-9]{1,9}(\\.[0-9]{1,9})?$"
                },
                "is_active": {
                  "type": "boolean",
                  "description": "Indicates whether the currency is active and available for use."
                },
                "exchange_rate_auto_update": {
                  "type": "boolean",
                  "description": "Indicates whether the currency has the automated exchange rate option enabled or not."
                },
                "iso_code": {
                  "type": "string",
                  "description": "ISO standard currency code. Example: INR, USD.",
                  "maxLength": 255
                },
                "symbol": {
                  "type": "string",
                  "description": "Symbol used to represent the currency.",
                  "maxLength": 255
                },
                "name": {
                  "type": "string",
                  "description": "Name of the currency. Example: Indian Rupee.",
                  "maxLength": 255
                },
                "is_base": {
                  "type": "boolean",
                  "description": "Indicates whether this currency is the organization's base currency."
                },
                "id": {
                  "type": "string",
                  "description": "Unique identifier of the currency.",
                  "maxLength": 255
                },
                "created_by": {
                  "type": "object",
                  "description": "User who created the currency record.",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "Name of the user who created the record.",
                      "maxLength": 255
                    },
                    "id": {
                      "type": "string",
                      "description": "User ID of the record creator.",
                      "maxLength": 255
                    }
                  },
                  "required": [
                    "name",
                    "id"
                  ],
                  "additionalProperties": false
                },
                "modified_by": {
                  "type": "object",
                  "description": "User who last updated the currency record.",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "Name of the user who modified the record.",
                      "maxLength": 255
                    },
                    "id": {
                      "type": "string",
                      "description": "User ID of the last modifier.",
                      "maxLength": 255
                    }
                  },
                  "required": [
                    "name",
                    "id"
                  ],
                  "additionalProperties": false
                },
                "modified_time": {
                  "type": "string",
                  "description": "Timestamp when the currency was last modified.",
                  "format": "date-time"
                },
                "created_time": {
                  "type": "string",
                  "description": "Timestamp when the currency was first created.",
                  "format": "date-time"
                },
                "exchange_rate_updated_time": {
                  "type": "string",
                  "description": "Timestamp when the exchange rate was last modified.",
                  "format": "date-time"
                }
              },
              "required": [
                "prefix_symbol",
                "format",
                "exchange_rate",
                "is_active",
                "iso_code",
                "symbol",
                "name",
                "is_base",
                "id",
                "created_by",
                "modified_by",
                "modified_time",
                "created_time"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "currencies"
        ],
        "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)
