POST workUnit/create?Token={Token}
Create a new working unit. Privilege "New" of licensed agenda "Work units" required.
Request Information
Authorization
- Authorization by token required
Availability
- Method can be used
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Token |
The action is authorized by this token. Token should generated by calling action "POST login". Expiration time of each token is 20 seconds |
globally unique identifier |
Required |
Body Parameters
WorkUnitCreateReq| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
Required String length: inclusive between 0 and 100 |
|
| Code | string |
Required String length: inclusive between 0 and 100 |
|
| Description | string |
String length: inclusive between 0 and 4000 |
|
| DifficultEnvironment | boolean |
None. |
Request Formats
application/json
Sample:
{"Name":"Strategic development unit","Code":"SD","Description":"Some description of the unit","DifficultEnvironment":false}
application/xml
Sample:
<Request> <Name>Strategic development unit</Name> <Code>SD</Code> <Description>Some description of the unit</Description> <DifficultEnvironment>false</DifficultEnvironment> </Request>
Response Information
Response Codes
| Http Code | Error Number | Description |
|---|---|---|
| 200 request succesfully done | 0 | successfully done |
| 400 bad request | 1002 | Entry parameter missing or parameter bindigs failed |
| 401 unauthorized | 1000 | Token {0} not found |
| 401 unauthorized | 1001 | Token {0} already expired |
| 401 unauthorized | 1006 | Ip filter violated for ip client address [{0}] |
| 401 unauthorized | 1007 | Ip filter [{0}] parsing failed |
| 401 unauthorized | 1008 | Request rate policy violated for [{0}] |
| 403 server refuses fo fulfill the request | 2206 | Privilege New of agenda Working units violated for [{0}] |
| 403 server refuses fo fulfill the request | 2209 | The key Name {0} is not unique |
| 415 unsupported Media Type | The request entity has a media type which the server or resource does not support. Only application/json and application/xml are supported | |
| 500 internal error | Server exception description |
Resource Description
BaseRespOfWorkUnitCreateReq| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | RequestResult |
None. |
|
| Request | WorkUnitCreateReq |
None. |
Response Formats
application/json
Sample:
{"Result":{"Message":"Processed with result: ExecOK","Code":0,"ModelStateErr":null},"Request":{"Name":"Strategic development unit","Code":"SD","Description":"Some description of the unit","DifficultEnvironment":false}}
application/xml
Sample:
<Response>
<Result>
<Message>Processed with result: ExecOK</Message>
<Code>0</Code>
</Result>
<Request>
<Name>Strategic development unit</Name>
<Code>SD</Code>
<Description>Some description of the unit</Description>
<DifficultEnvironment>false</DifficultEnvironment>
</Request>
</Response>