Get Currencies

Purpose

To get all the available currencies in your organization.

Request URL

https://www.zohoapis.com/crm/v2/org/currencies

Request Method

GET

Scope

ZohoCRM.settings.currencies.{operation_type}

Possible operation types
READ - Get currencies data

Possible Errors

HTTP StatusError CodeMessageReason
403CURRENCIES_NOT_ENABLEDMulti currency is not enabledYou have not enabled other currencies for your organization. Goto Setup> Company Details> Currencies and enable it.
404INVALID_URL_PATTERNPlease check if the URL trying to access is a correct one.The request URL has syntactical errors.
403FEATURE_NOT_SUPPORTEDThe multi-currency feature is not available except the Enterprise and higher editions.The multi-currency feature is only available in Enterprise and Ultimate editions.

Sample Request

Copiedcurl "https://www.zohoapis.com/crm/v2/org/currencies"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"

Sample Response

Copied{
    "currencies": [
        {
            "symbol": "DA",
            "created_time": "2019-11-08T14:24:56+05:30",
            "is_active": true,
            "exchange_rate": "3.000000000",
            "format": {
                "decimal_separator": "Period",
                "thousand_separator": "Comma",
                "decimal_places": "2"
            },
            "created_by": {
                "name": "Patricia Boyle",
                "id": "4150868000000225013"
            },
            "prefix_symbol": true,
            "is_base": true,
            "modified_time": "2019-11-08T14:48:03+05:30",
            "name": "Algerian Dinar - DZD",
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "4150868000000225013"
            },
            "id": "4150868000000780002",
            "iso_code": "DZD"
        },
        {
            "symbol": "₹",
            "created_time": "2019-11-08T14:29:22+05:30",
            "is_active": true,
            "exchange_rate": "1.000000000",
            "format": {
                "decimal_separator": "Period",
                "thousand_separator": "Comma",
                "decimal_places": "2"
            },
            "created_by": {
                "name": "Patricia Boyle",
                "id": "4150868000000225013"
            },
            "prefix_symbol": true,
            "is_base": false,
            "modified_time": "2019-11-08T14:29:22+05:30",
            "name": "Indian Rupee - INR",
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "4150868000000225013"
            },
            "id": "4150868000000779003",
            "iso_code": "INR"
        },
        {
            "symbol": "$",
            "created_time": "2019-11-08T14:45:26+05:30",
            "is_active": true,
            "exchange_rate": "3.000000000",
            "format": {
                "decimal_separator": "Period",
                "thousand_separator": "Comma",
                "decimal_places": "2"
            },
            "created_by": {
                "name": "Patricia Boyle",
                "id": "4150868000000225013"
            },
            "prefix_symbol": true,
            "is_base": false,
            "modified_time": "2019-11-08T14:53:02+05:30",
            "name": "US Dollar - USD",
            "modified_by": {
                "name": "Patricia Boyle",
                "id": "4150868000000225013"
            },
            "id": "4150868000000780008",
            "iso_code": "USD"
        }
    ]
}