GET api/offline/customer/GetCustomerCredit?customerId={customerId}
获取线下客户的信用额度
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseOfCustomerCreditResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| data | CustomerCreditResponse |
None. |
|
| errcode |
错误码,默认为成功:SUCCESS |
string |
None. |
| errmsg |
错误信息,默认为:成功 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": {
"Name": "sample string 1",
"RepayMoney": 2.0,
"NoLockMoney": 3.0,
"TotalMoney": 4.0,
"RepaymentOverflowMoney": 5.0,
"IsCertified": true
},
"errcode": "sample string 1",
"errmsg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseOfCustomerCreditResponseUJ8Augit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
<errcode>sample string 1</errcode>
<errmsg>sample string 2</errmsg>
<data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response">
<d2p1:IsCertified>true</d2p1:IsCertified>
<d2p1:Name>sample string 1</d2p1:Name>
<d2p1:NoLockMoney>3</d2p1:NoLockMoney>
<d2p1:RepayMoney>2</d2p1:RepayMoney>
<d2p1:RepaymentOverflowMoney>5</d2p1:RepaymentOverflowMoney>
<d2p1:TotalMoney>4</d2p1:TotalMoney>
</data>
</ResponseOfCustomerCreditResponseUJ8Augit>