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

> Update base currency. Zoho CRM Currencies Update Base Currency reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline.

Update base currency.

<Info>
  Tool ID: `zoho_crm_currencies_update_base_currency`
</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_update_base_currency',
  {
    "base_currency": {
      "id": "id_123"
    }
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_currencies_update_base_currency --input '{
  "base_currency": {
    "id": "id_123"
  }
}' --json
```

## Example response

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

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

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

## Input reference

Payload for modifying existing base currency.

| Name                    | Type     | Required | Default | Details                       |
| ----------------------- | -------- | -------- | ------- | ----------------------------- |
| `payload.base_currency` | `object` | Yes      | —       | Updated base currency values. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Payload for modifying existing base currency.",
    "properties": {
      "base_currency": {
        "type": "object",
        "description": "Updated base currency values.",
        "properties": {
          "iso_code": {
            "type": "string",
            "description": "ISO currency code.",
            "maxLength": 255
          },
          "symbol": {
            "type": "string",
            "description": "Currency symbol.",
            "maxLength": 255
          },
          "exchange_rate": {
            "type": "string",
            "description": "Updated exchange rate. It should be one",
            "maxLength": 50,
            "pattern": "^[0-9]{1,9}(\\.[0-9]{1,9})?$"
          },
          "format": {
            "type": "object",
            "description": "Currency display formatting.",
            "properties": {
              "numeral_system": {
                "type": "string",
                "description": "Numbering system used for grouping digits.",
                "enum": [
                  "Indian",
                  "International"
                ]
              },
              "decimal_places": {
                "type": "string",
                "description": "Number of decimal places.",
                "enum": [
                  "0",
                  "2",
                  "3",
                  "4",
                  "5",
                  "6"
                ]
              },
              "decimal_separator": {
                "type": "string",
                "description": "Decimal separator character.",
                "enum": [
                  "Comma",
                  "Period"
                ]
              },
              "thousand_separator": {
                "type": "string",
                "description": "Thousand separator character.",
                "maxLength": 255,
                "enum": [
                  "Comma",
                  "Period",
                  "Space"
                ]
              }
            },
            "additionalProperties": false
          },
          "name": {
            "type": "string",
            "description": "Currency display name.",
            "maxLength": 255
          },
          "id": {
            "type": "string",
            "description": "Unique identifier of the currency.",
            "maxLength": 255
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false
      }
    },
    "required": [
      "base_currency"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

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