批量导入系统自定义汇率

业务场景

同步外部的汇率作为系统的自定义汇率

接口地址

/api/openapi/currency/exchange-rate/save

请求类型

POST

请求参数说明

参数说明

参数名称 参数值 是否必须 默认值 备注
from string Y 基准货币,币种
to string Y 兑换货币,币种
effectiveDate long N 默认值,明天生效 生效时间-开始范围,毫秒的时间戳
rate BigDecimal Y 整数位数不能大于17位,小数位数不能超过16位(超过16位默认向前进一位)

请求数据示例

{
    "data": [
        {
            "from": "AUD",
            "to": "EUR",
            "effectiveDate": 1672898756357,
            "rate": 0.11111111
        }
    ]
}

响应参数说明

参数说明

名称 类型 是否必须 默认值 备注 其他信息
code string Y 返回ACK或NACK
message string N
data object[] Y 汇率同步信息
errorCode string Y 错误标识
success boolean N 是否成功

正确返回结果

{
    "code": "ACK",
    "message": "",
    "data": [],
    "errorCode": null,
    "success": true
}

异常返回结果

{
    "code": "ACK",
    "message": "",
    "data": [
        {
            "from": "AD",
            "to": "EUR",
            "errorMsg": "XXX",
            "errorCode": "COMM0001"
        }
    ],
    "errorCode": null,
    "success": true
}
Copyright © 杭州每刻科技有限公司 www.maycur.com all right reserved,powered by Gitbook该文件修订时间: 2024-11-20 10:52:00

results matching ""

    No results matching ""

    results matching ""

      No results matching ""