POST api/backend/auditArticle
Request Information
URI Parameters
None.
Body Parameters
AuditArticleModel| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeNumber | integer |
None. |
|
| articleId | integer |
None. |
|
| status | integer |
None. |
|
| auditRemark | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"employeeNumber": 1,
"articleId": 2,
"status": 3,
"auditRemark": "sample string 4"
}
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. |
|
| code | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"data": {},
"error": "sample string 3",
"code": 4
}