POST api/backend/saveContractIndustry
Request Information
URI Parameters
None.
Body Parameters
ContractIndustryPostModel| Name | Description | Type | Additional information |
|---|---|---|---|
| industryId | integer |
None. |
|
| industryName | string |
None. |
|
| isEnable | boolean |
None. |
|
| employeeNumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"industryId": 1,
"industryName": "sample string 2",
"isEnable": true,
"employeeNumber": 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
}