Currencies
Maintains the list of active currencies for your organization, including symbols, ISO codes, and exchange rates used in transactions.
Table-Specific Information
Select
The connector uses the Zoho CRM API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client-side within the connector.
- Id supports '=' operator.
For example, the following queries are processed server side:
SELECT * FROM Currencies WHERE Id = '1234';
Insert
INSERT INTO Currencies (ISO_Code, Name, ExchangeRate) VALUES ('1234', 'hello','1.000');
Bulk Insert operation:
INSERT INTO Currencies#TEMP (id, Name, Symbol, IsActive, ExchangeRate, FormatDecimalSeparator, FormatThousandSeparator, FormatDecimalPlaces, PrefixSymbol, ISO_Code) VALUES ('4150868000000236307', 'cdata1','$','true','1.0000','period','comma','2','true','2');
INSERT INTO Currencies#TEMP (id, Name, Symbol, IsActive, ExchangeRate, FormatDecimalSeparator, FormatThousandSeparator, FormatDecimalPlaces, PrefixSymbol, ISO_Code) VALUES ('1234', 'cdata','$','true','2.0000','period','comma','3','true','3');
INSERT INTO Currencies (id, Name, Symbol, IsActive, ExchangeRate, FormatDecimalSeparator, FormatThousandSeparator, FormatDecimalPlaces, PrefixSymbol, ISO_Code) SELECT id, Name, Symbol, IsActive, ExchangeRate, FormatDecimalSeparator, FormatThousandSeparator, FormatDecimalPlaces, PrefixSymbol, ISO_Code FROM currencies#TEMP;
Required fields: Name, ISO_Code, ExchangeRate.
Any field which is not read-only (ReadOnly = false in the table below) can be inserted.
Update
UPDATE Currencies SET symbol = 'hello', FormatDecimalSeparator = 'period', FormatThousandSeparator = 'comma',FormatDecimalPlaces = '2',prefixsymbol = 'true',exchangerate = '1.0000' WHERE Id = '1234';
Bulk Update Operation:
UPDATE Currencies SET symbol = '$',FormatDecimalSeparator = 'period',FormatThousandSeparator = 'comma',FormatDecimalPlaces = '2';
Required fields: Id.
Any field which is not read-only (ReadOnly = false in the table below) can be updated. NOTE: if Id field is not specified in the query, PostData will be created for each id ( driver will execute bulk update operation for each currency id).
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | String | True |
Represents the unique identifier of the currency. |
| Name | String | False |
Represents the name of the currency. |
| Symbol | String | False |
Represents the symbol used for the currency. |
| IsActive | Bool | False |
Indicates whether the currency is active. |
| ExchangeRate | Double | False |
Represents the exchange rate of the currency compared to the base currency. |
| FormatDecimalSeparator | String | False |
The character used to separate the integer part from the fractional part in the currency value. |
| FormatThousandSeparator | String | False |
The character used to separate groups of thousands in the currency value. |
| FormatDecimalPlaces | String | False |
The number of digits displayed after the decimal point in the currency value. |
| ModifiedByName | String | True |
The name of the user who most recently modified the currency details. |
| ModifiedByid | String | True |
The identifier of the user who most recently modified the currency details. |
| PrefixSymbol | Bool | False |
Indicates whether the currency symbol appears before the amount. |
| IsBase | Bool | True |
Indicates whether this is the base currency used in the system. |
| CreatedAt | Datetime | True |
The date and time when the currency was created. |
| ModifiedAt | Datetime | True |
The date and time when the currency was last modified. |
| ISO_Code | String | False |
The official ISO code assigned to the currency. |