获取企业授信额度信息
接口简介
url: http://ibms-test.wecube.com/ibms/invoice/v1/enterprise/getCreditLimit
说明:获取企业授信额度信息
接口请求参数
参数 | 类型(长度) | 必填 | 描述 |
---|---|---|---|
taxNo | String(64) | Y | 纳税人统一识别号 |
taxAcctNo | String(64) | Y | 电子税务局登录帐号 |
响应参数
参数 | 类型(长度) | 必填 | 描述 |
---|---|---|---|
totalCreditLimit | BigDecimal | Y | 授信总额度 |
usedCreditLimit | BigDecimal | Y | 已使用额度 |
surplusCreditLimit | BigDecimal | Y | 剩余授信额度 |
creditRating | String | Y | 信用等级 |
请求示例
{
"taxAcctNo": "13012341233",
"taxNo": "91440400MA526E3LXX"
}
返回示例
{
"code": "",
"message": "",
"result": {
"totalCreditLimit": 555,
"usedCreditLimit": 300,
"surplusCreditLimit": 255,
"creditRating": "A"
}
}