POST workUnit/removeSupervisor?Token={Token}
Remove supervisor from WorkUnit. Application privilege "Edit" for licensed agenda "WorkUnits" required. Application privilege "Edit" for agenda item "Work units members" 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
WorkUnitSupervisorRemoveReq| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Work unit name |
string |
Required String length: inclusive between 0 and 100 |
| PersonId |
Unique identification of the working unit supervisor |
string |
Required String length: inclusive between 0 and 100 |
| ValidFrom |
Supervisor is valid from |
date |
Required |
| DeputyFor |
Unique identification of the person who is represented by this supervisor |
string |
String length: inclusive between 0 and 100 |
Request Formats
application/json
Sample:
{"Name":"Strategic development unit","PersonId":"0000012","ValidFrom":"\/Date(1779580800000)\/","DeputyFor":null}
application/xml
Sample:
<Request> <Name>Strategic development unit</Name> <PersonId>0000012</PersonId> <ValidFrom>2026-05-24T00:00:00Z</ValidFrom> </Request>
text/json
Sample:
{
"Name": "sample string 1",
"PersonId": "sample string 2",
"ValidFrom": "2026-05-25T05:55:11.0486048+02:00",
"DeputyFor": "sample string 4"
}
text/xml
Sample:
<Request xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Name>sample string 1</Name> <PersonId>sample string 2</PersonId> <ValidFrom>2026-05-25T05:55:11.0486048+02:00</ValidFrom> <DeputyFor>sample string 4</DeputyFor> </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 | 2207 | Application privilege Edit of agenda Work units violated for [{0}] |
| 403 server refuses fo fulfill the request | 1101 | Application privilege View for licensed agenda Persons violated for person [{0}] |
| 403 server refuses fo fulfill the request | 2214 | Application privilege Edit of item Supervisors of agenda Work units violated for [{0}] |
| 403 server refuses fo fulfill the request | 2211 | Record permission Edit of agenda Work units violated for [{0}] |
| 403 server refuses fo fulfill the request | 2126 | Record permission View of agenda Persons violated for [{0}] |
| 404 required resource does not exist on the server | 2201 | Working unit [{0}] not found |
| 404 required resource does not exist on the server | 1100 | PersonId [{0}] not found |
| 404 required resource does not exist on the server | 2216 | Supervisor [{0}] not found in the Work unit [{1}] |
| 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
BaseRespOfWorkUnitSupervisorRemoveReq| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | RequestResult |
None. |
|
| Request | WorkUnitSupervisorRemoveReq |
None. |
Response Formats
application/json
Sample:
{"Result":{"Message":"Processed with result: ExecOK","Code":0,"ModelStateErr":null},"Request":{"Name":"Strategic development unit","PersonId":"0000012","ValidFrom":"\/Date(1779580800000)\/","DeputyFor":null}}
application/xml
Sample:
<Response>
<Result>
<Message>Processed with result: ExecOK</Message>
<Code>0</Code>
</Result>
<Request>
<Name>Strategic development unit</Name>
<PersonId>0000012</PersonId>
<ValidFrom>2026-05-24T00:00:00Z</ValidFrom>
</Request>
</Response>
text/json
Sample:
{
"Result": {
"Message": "sample string 1",
"Code": 2,
"ModelStateErr": [
"sample string 1",
"sample string 2"
]
},
"Request": {
"Name": "sample string 1",
"PersonId": "sample string 2",
"ValidFrom": "2026-05-25T05:55:11.0642277+02:00",
"DeputyFor": "sample string 4"
}
}
text/xml
Sample:
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Result>
<Message>sample string 1</Message>
<Code>2</Code>
<ModelStateErr>
<string>sample string 1</string>
<string>sample string 2</string>
</ModelStateErr>
</Result>
<Request>
<Name>sample string 1</Name>
<PersonId>sample string 2</PersonId>
<ValidFrom>2026-05-25T05:55:11.0642277+02:00</ValidFrom>
<DeputyFor>sample string 4</DeputyFor>
</Request>
</Response>