English
Add Currency - Only Non-existing Currencies Can Be Added
About 130 wordsLess than 1 minute
2026-01-19
Description
Adds a currency. Only non-existing currencies can be added.
Request Specification
Method: POST + application/json
Endpoint: https://${Cloud Domain}/cgi/crm/v2/add/currency?thirdTraceId=${Random String}
Headers: Refer to Common Parameters
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| data | Map | Yes | Data map |
| currencyCode | String | Yes | Currency code |
| exchangeRate | String | Yes | Exchange rate |
Request Example
{
"data": {
"exchangeRate": "6.652365",
"currencyCode": "USD"
}
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Unique request ID |
| errorDescription | string | Error description |
| errorMessage | string | Error message (volatile) |
| errorCode | Int | Error codes |
Response Example
{
"traceId": "E-O.827xxxxxx",
"errorDescription": "success",
"errorMessage": "OK",
"errorCode": 0
}Notes
- Do not use the
errorMessagefield for logical judgments as it may change.
