POST api/backend/auditContract
Request Information
URI Parameters
None.
Body Parameters
AuditContractModel| Name | Description | Type | Additional information |
|---|---|---|---|
| contractId | integer |
None. |
|
| status | integer |
None. |
|
| downloadPrice | decimal number |
None. |
|
| auditEmployeeNumber | integer |
None. |
|
| auditReason | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"contractId": 1,
"status": 2,
"downloadPrice": 1.0,
"auditEmployeeNumber": 3,
"auditReason": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| data | Object |
None. |
|
| error | string |
None. |
|
| code | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"data": {},
"error": "sample string 3",
"code": 4
}