POST api/Credit/AddEnterpriseLoanInfo
Request Information
URI Parameters
None.
Body Parameters
Temp_EnterpriseLoanInfoName | Description | Type | Additional information |
---|---|---|---|
sourceId | string |
None. |
|
mobile | string |
None. |
|
amount | decimal number |
None. |
|
organId | integer |
None. |
|
loanRate | decimal number |
None. |
|
maturity | integer |
None. |
|
guaranteeMode | integer |
None. |
|
repaymentWays | integer |
None. |
|
downLoan | string |
None. |
|
createTime | date |
None. |
|
updateDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "sourceId": "sample string 1", "mobile": "sample string 2", "amount": 3.0, "organId": 4, "loanRate": 5.0, "maturity": 6, "guaranteeMode": 7, "repaymentWays": 8, "downLoan": "sample string 9", "createTime": "2025-06-14T23:14:56.5572915+08:00", "updateDate": "2025-06-14T23:14:56.5572915+08:00" }
application/xml, text/xml
Sample:
<Temp_EnterpriseLoanInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BPMS.Entity"> <amount>3</amount> <createTime>2025-06-14T23:14:56.5572915+08:00</createTime> <downLoan>sample string 9</downLoan> <guaranteeMode>7</guaranteeMode> <loanRate>5</loanRate> <maturity>6</maturity> <mobile>sample string 2</mobile> <organId>4</organId> <repaymentWays>8</repaymentWays> <sourceId>sample string 1</sourceId> <updateDate>2025-06-14T23:14:56.5572915+08:00</updateDate> </Temp_EnterpriseLoanInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ApiResultName | Description | Type | Additional information |
---|---|---|---|
code | integer |
None. |
|
msg | string |
None. |
|
errMsg | string |
None. |
|
data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "code": 1, "msg": "sample string 2", "errMsg": "sample string 3", "data": {} }
application/xml, text/xml
Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BPMS.OpenApi.Model.ManageBase"> <code>1</code> <data /> <errMsg>sample string 3</errMsg> <msg>sample string 2</msg> </ApiResult>