删除汇率
开发中
POST
/open/api/basic/exchange-rate/remove
请求参数
Body 参数application/json
exchange_rate_id
string
汇率id
示例
{
"exchange_rate_id": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/open/api/basic/exchange-rate/remove' \
--header 'Content-Type: application/json' \
--data-raw '{
"exchange_rate_id": "string"
}'
返回响应
🟢200成功
application/json
Body
exchange_rate_id
string
汇率id
<= 32 字符
exchange_rate_type_code
string
汇率类型
<= 32 字符
bank_code
string
银行编码
<= 16 字符
exchange_rate_date
string
汇率日期
<= 16 字符
rate
number
汇率
<= 16
purchase_price
number
汇买价
<= 16
remittance_price
number
汇卖价
<= 16
cash_purchase_price
number
抄买价
<= 16
cash_remittance_price
number
炒卖价
<= 16
reference_currency_code
string
基准货币
<= 16 字符
inquiry_currency_name
string
对应货币
<= 16 字符
示例
{
"exchange_rate_type_code": "0001",
"reference_currency_code": "CNY",
"inquiry_currency_name": "CNY",
"exchange_rate_id": "001",
"purchase_price": 2,
"remittance_price": 2,
"cash_purchase_price": 2,
"rate": 2,
"bank_code": "ICBC",
"exchange_rate_date": "20200320",
"cash_remittance_price": 2
}