POST api/departmentapi/add?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | globally unique identifier |
None. |
Body Parameters
DepartmentViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
Required |
|
| code | integer |
Required |
|
| contract_id | globally unique identifier |
Required |
|
| delay_between_scans | integer |
None. |
|
| id | globally unique identifier |
None. |
|
| item_wash_max | integer |
None. |
|
| name | string |
None. |
|
| remark | string |
None. |
|
| selected_nameplate_id | globally unique identifier |
None. |
|
| selected_sticker_id | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"active": true,
"code": 2,
"contract_id": "a211c34b-c530-4b4e-a604-d95dfc009353",
"delay_between_scans": 1,
"id": "c5060c60-9ca1-4cba-afc5-5b7c8717942c",
"item_wash_max": 1,
"name": "sample string 5",
"remark": "sample string 6",
"selected_nameplate_id": "037e854b-80dc-4b1c-9f1f-167a646602bd",
"selected_sticker_id": "a70a006e-7122-4858-85cb-546e357e21ac"
}
application/xml, text/xml
Sample:
<department xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <code>2</code> <contract_id>a211c34b-c530-4b4e-a604-d95dfc009353</contract_id> <delay_between_scans>1</delay_between_scans> <id>c5060c60-9ca1-4cba-afc5-5b7c8717942c</id> <item_wash_max>1</item_wash_max> <name>sample string 5</name> <remark>sample string 6</remark> <selected_nameplate_id>037e854b-80dc-4b1c-9f1f-167a646602bd</selected_nameplate_id> <selected_sticker_id>a70a006e-7122-4858-85cb-546e357e21ac</selected_sticker_id> </department>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"f607599a-4af1-4f04-92d6-f1c502db32bd"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">f607599a-4af1-4f04-92d6-f1c502db32bd</guid>