English
Update Currency
About 143 wordsLess than 1 minute
2026-01-19
Description
Update currency information.
Request Specification
Method: POST + application/json
Endpoint: https://${Cloud Domain}/cgi/crm/v2/update/currency?thirdTraceId=${Random String}
Headers: Refer to Common Parameters
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| data | Map | Yes | Data map |
| exchangeRateList | List | Yes | Collection of currency exchange rates to update |
| currencyCode | String | Yes | Target currency code |
| exchangeRate | String | Yes | Exchange rate from source currency to target currency |
Request Example
{
"data": {
"exchangeRateList": [
{
"exchangeRate": "1.30025",
"currencyCode": "All"
}
]
}
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Unique request ID |
| errorDescription | string | Error description |
| errorMessage | string | Error message |
| errorCode | Int | Error codes reference |
Response Example
{
"traceId": "E-O.827xxxxxx",
"errorDescription": "success",
"errorMessage": "OK",
"errorCode": 0
}Notes
- Do not use the message field in the response for logical judgments, as errorMessage may change.
