跳到主要内容

创建赎回申请


Request

ENDPOINT
/quota_distributor/investor/INVESTOR_KEY/redemption_request
MÉTODO
POST
STATUS
201
Request Body
{
"issuance_serie_key": "UUID",
"redemption_request_type": "gross_redemption_value" | "number_of_quotas" | "remaining_application_value" | "net_value_redemption",
"gross_redemption_value":0.00,
"net_value": 0.00,
"remaining_application_value":0.00,
"number_of_quotas":0.00000000,
"bank_account_key": "UUID",
"quotation_date": "yyyy-mm-dd"
}
注意
  • redemption_request_type 字段定义是否需要传入 gross_redemption_valueremaining_application_valuenumber_of_quotas 字段。

    • 若为 gross_redemption_value,则 gross_redemption_value 字段为必填。
    • 若为 remaining_application_value,则 remaining_application_value 字段为必填。
    • 若为 number_of_quotas,则 number_of_quotas 字段为必填。
    • 若为 net_value_redemption,则 net_value 字段为必填。
  • bank_account_key 字段用于将赎回清算到投资者的特定账户。如果未指定特定账户,将使用投资者的主账户

Body params

字段类型描述必填
issuance_serie_keystring发行系列的唯一标识键
redemption_request_typestring**赎回申请类型**枚举值
gross_redemption_valuefloat赎回总值,未扣除所得税和金融交易税
net_valuefloat赎回净值,已扣除所得税和金融交易税
remaining_application_valuefloat应用剩余值
number_of_quotasfloat份额数量
bank_account_keystring投资者银行账户的唯一标识键
quotation_datestring赎回报价日期

赎回申请类型

枚举值描述
gross_redemption_value按总值赎回
number_of_quotas按份额数量赎回
remaining_application_value按剩余持仓赎回
net_value_redemption按净值赎回

Response

Response Body
{
"redemption_request_key": "UUID"
}