Appearance
2.1.4 授信结果查询(必选)
用于
流量提供方主动查询授信结果;流量提供方可根据credit_id主动查询,也可等待 2.2.1 异步通知
- 接口提供方: 流量承接方(KN)
- 接口调用方: 流量提供方
- method: check_credit_granting_result
请求参数
| 参数 | 类型 | 必选 | 说明 | 备注 |
|---|---|---|---|---|
| receiver_credit_id | string | N | 流量承接方的授信id | 不超过32位;receiver_credit_id&provider_credit_id传其中一个即可 |
| provider_credit_id | string | N | 流量提供方的授信id | 不超过32位;receiver_credit_id&provider_credit_id传其中一个即可 |
响应参数
| 参数 | 类型 | 必选 | 说明 | 备注 |
|---|---|---|---|---|
| receiver_credit_id | string | Y | 流量承接方的授信id | 不超过32位 |
| provider_credit_id | string | N | 流量提供方的授信id | 不超过32位;流量提供方授信接口传了的话,就会有此字段 |
| status | int | Y | 业务状态码 | 见 3.3.3 |
| reject_reason | string | N | 拒绝原因 | 非成功时必传 |
| expiry_timestamp | long | Y | 授信过期时间戳(秒级) | 成功时,表示授信有效期到期时间,有效期内可以发起用信;非成功时,表示拒绝冷冻期到期时间,过期后,才能再次发起 授信 |
| bank_card_list | array object | N | 银行卡列表 | 不超过32位; 当授信传入银行卡时,必传 |
| product | object | N | 产品形态 | 授信通过时必传 |
bank_card_list.object
| 参数 | 类型 | 必选 | 说明 | 备注 |
|---|---|---|---|---|
| bank_card_number | string | Y | 银行卡卡号 | - |
| bank_card_uuid | string | Y | 银行卡uuid | - |
product
| 参数 | 类型 | 必选 | 说明 | 备注 |
|---|---|---|---|---|
| need_select_equity | bool | Y | 是否强制勾选权益包 | - |
| list | array object | Y | 产品线列表 | - |
product.list.object
| 参数 | 类型 | 必选 | 说明 | 备注 |
|---|---|---|---|---|
| min_amount | string | Y | 最小额度 | 单位:泰铢 |
| max_amount | string | Y | 最大额度 | 单位:泰铢 |
| term | int | Y | 每期天数 | 单位:天 |
| period | int | Y | 期数 | - |
| total_term | int | Y | 总天数 | 单位:天 |
| period | int | Y | 期数 | - |
| rate | string | Y | 权益包费率(百分之N) | - |
| interest | string | Y | 日费率(百分之N) | 精度为3位小数 |
请求参数示例
json
{
"receiver_credit_id": "2020036532193609"
}响应参数示例
json
{
"code": 0,
"message": "success",
"data": {
"receiver_credit_id": "2020036532193609",
"provider_credit_id": "2020010119190202",
"status": 10200,
"reject_reason": "",
"expiry_timestamp": 1756885676,
"bank_card_list": [
{
"bank_card_number": "8191234567",
"bank_card_uuid": "56988486296666112"
}
],
"product": {
"need_select_equity": true,
"list": [
{
"min_amount": "1000",
"max_amount": "10000",
"term": 15,
"period": 4,
"total_term": 91,
"rate": "40",
"interest": "0.098"
},
{
"min_amount": "2000",
"max_amount": "20000",
"term": 15,
"period": 8,
"rate": "50",
"total_term": 91,
"interest": "0.098"
}
]
}
}
}