POST api/business/addWithdrawalRecord
Request Information
URI Parameters
None.
Body Parameters
PointWithdrawalApplication| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| openId | string |
None. |
|
| moneyAmount | decimal number |
None. |
|
| deductPointsAmount | decimal number |
None. |
|
| applyTime | date |
None. |
|
| status | integer |
None. |
|
| auditTime | date |
None. |
|
| auditEmployeeNumber | integer |
None. |
|
| Remark | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"openId": "sample string 2",
"moneyAmount": 3.0,
"deductPointsAmount": 4.0,
"applyTime": "2025-12-07T20:26:14.2426299+08:00",
"status": 6,
"auditTime": "2025-12-07T20:26:14.2426299+08:00",
"auditEmployeeNumber": 8,
"remark": "sample string 9"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| data | Object |
None. |
|
| error | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"data": {},
"error": "sample string 3"
}