POST project/createProjectParticipant?Token={Token}
Create project participants. Privilege "Edit" of licensed agenda "Projects.Projects" required. Privilege "Edit" of item "Participants" of licensed agenda "Projects.Projects" required. Privilege "View" of licensed agenda "Persons" required. Functionality may also be restricted by record permission "View" of agenda "Persons" and "Projects".
Request Information
Authorization
- Authorization by token required
Availability
- Method disabled by configuration
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
ProjectCreatePrjParticipantsReqName | Description | Type | Additional information |
---|---|---|---|
Code |
Unique identification of the project in the system |
string |
Required String length: inclusive between 0 and 100 |
Participants |
The Participant list |
Collection of ParticipantToCreate |
None. |
Request Formats
application/json
Sample:
{"Code":"PROJECT CODE 1005","Participants":[{"PersonID":"X0002","ValidFrom":"2018-12-25T00:00:00","ValidTo":"2018-12-25T00:00:00","FulfilmentLimit":1,"IsLeader":0,"RegisterSubordinateWork":0},{"PersonID":"X0003","ValidFrom":"2018-12-25T00:00:00","ValidTo":"2018-12-25T00:00:00","FulfilmentLimit":1,"IsLeader":0,"RegisterSubordinateWork":0},{"PersonID":"X0007","ValidFrom":"2018-12-25T00:00:00","ValidTo":"2018-12-25T00:00:00","FulfilmentLimit":1,"IsLeader":0,"RegisterSubordinateWork":0}]}
application/xml
Sample:
<Request> <Code>PROJECT CODE 1005</Code> <Participants> <ParticipantToCreate> <PersonID>X0002</PersonID> <ValidFrom>2018-12-25T00:00:00</ValidFrom> <ValidTo>2018-12-25T00:00:00</ValidTo> <FulfilmentLimit>1</FulfilmentLimit> <IsLeader>0</IsLeader> <RegisterSubordinateWork>0</RegisterSubordinateWork> </ParticipantToCreate> <ParticipantToCreate> <PersonID>X0003</PersonID> <ValidFrom>2018-12-25T00:00:00</ValidFrom> <ValidTo>2018-12-25T00:00:00</ValidTo> <FulfilmentLimit>1</FulfilmentLimit> <IsLeader>0</IsLeader> <RegisterSubordinateWork>0</RegisterSubordinateWork> </ParticipantToCreate> <ParticipantToCreate> <PersonID>X0007</PersonID> <ValidFrom>2018-12-25T00:00:00</ValidFrom> <ValidTo>2018-12-25T00:00:00</ValidTo> <FulfilmentLimit>1</FulfilmentLimit> <IsLeader>0</IsLeader> <RegisterSubordinateWork>0</RegisterSubordinateWork> </ParticipantToCreate> </Participants> </Request>
text/json
Sample:
{ "Code": "sample string 1", "Participants": [ { "PersonID": "sample string 1", "ValidFrom": "sample string 2", "ValidTo": "sample string 3", "FulfilmentLimit": 4, "IsLeader": 5, "RegisterSubordinateWork": 6 }, { "PersonID": "sample string 1", "ValidFrom": "sample string 2", "ValidTo": "sample string 3", "FulfilmentLimit": 4, "IsLeader": 5, "RegisterSubordinateWork": 6 } ] }
text/xml
Sample:
<Request xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Code>sample string 1</Code> <Participants> <ParticipantToCreate> <PersonID>sample string 1</PersonID> <ValidFrom>sample string 2</ValidFrom> <ValidTo>sample string 3</ValidTo> <FulfilmentLimit>4</FulfilmentLimit> <IsLeader>5</IsLeader> <RegisterSubordinateWork>6</RegisterSubordinateWork> </ParticipantToCreate> <ParticipantToCreate> <PersonID>sample string 1</PersonID> <ValidFrom>sample string 2</ValidFrom> <ValidTo>sample string 3</ValidTo> <FulfilmentLimit>4</FulfilmentLimit> <IsLeader>5</IsLeader> <RegisterSubordinateWork>6</RegisterSubordinateWork> </ParticipantToCreate> </Participants> </Request>
Response Information
Response Codes
Http Code | Error Number | Description |
---|---|---|
200 request succesfully done | 0 | Processed with result: ExecOK |
202 accepted | 1291 | Request accepted but some participants [{0}] already exist in the system |
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 | 1289 | Privilege Edit of agenda Projects.Projects violated for [{0}] |
403 server refuses fo fulfill the request | 1101 | Privilege View of agenda Persons violated for [{0}] |
403 server refuses fo fulfill the request | 1295 | Privilege Edit of item Participants of agenda Projects.Projects violated for [{0}] |
403 server refuses fo fulfill the request | 1297 | Record permission View of agenda Projects violated for [{0}] |
403 server refuses fo fulfill the request | 1 | Db operation failed, agenda missing priviliges |
403 server refuses fo fulfill the request | 2 | Db operation failed, record missing priviliges |
403 server refuses fo fulfill the request | 3 | Db operation failed, Record duplicity |
403 server refuses fo fulfill the request | 4 | Db operation failed, already changed by another user |
403 server refuses fo fulfill the request | 5 | Db operation failed, already deleted by another user |
403 server refuses fo fulfill the request | 6 | Db operation failed, database data consistence violation |
403 server refuses fo fulfill the request | 7 | Db operation failed, operation can not be executed because another problems occured |
403 server refuses fo fulfill the request | 8 | Db operation failed, licence violation |
404 required resource does not exist on the server | 1281 | Project [{0}] not found |
404 required resource does not exist on the server | 1100 | PersonId [{0}] not found |
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
BaseRespOfProjectCreatePrjParticipantsReqName | Description | Type | Additional information |
---|---|---|---|
Result | RequestResult |
None. |
|
Request | ProjectCreatePrjParticipantsReq |
None. |
Response Formats
application/json
Sample:
{"Result":{"Message":"Processed with result: ExecOK","Code":0,"ModelStateErr":null},"Request":{"Code":"PROJECT CODE 1005","Participants":[{"PersonID":"X0002","ValidFrom":"2018-12-25T00:00:00","ValidTo":"2018-12-25T00:00:00","FulfilmentLimit":1,"IsLeader":0,"RegisterSubordinateWork":0},{"PersonID":"X0003","ValidFrom":"2018-12-25T00:00:00","ValidTo":"2018-12-25T00:00:00","FulfilmentLimit":1,"IsLeader":0,"RegisterSubordinateWork":0},{"PersonID":"X0007","ValidFrom":"2018-12-25T00:00:00","ValidTo":"2018-12-25T00:00:00","FulfilmentLimit":1,"IsLeader":0,"RegisterSubordinateWork":0}]}}
application/xml
Sample:
<Response> <Result> <Message>Processed with result: ExecOK</Message> <Code>0</Code> </Result> <Request> <Code>PROJECT CODE 1005</Code> <Participants> <ParticipantToCreate> <PersonID>X0002</PersonID> <ValidFrom>2018-12-25T00:00:00</ValidFrom> <ValidTo>2018-12-25T00:00:00</ValidTo> <FulfilmentLimit>1</FulfilmentLimit> <IsLeader>0</IsLeader> <RegisterSubordinateWork>0</RegisterSubordinateWork> </ParticipantToCreate> <ParticipantToCreate> <PersonID>X0003</PersonID> <ValidFrom>2018-12-25T00:00:00</ValidFrom> <ValidTo>2018-12-25T00:00:00</ValidTo> <FulfilmentLimit>1</FulfilmentLimit> <IsLeader>0</IsLeader> <RegisterSubordinateWork>0</RegisterSubordinateWork> </ParticipantToCreate> <ParticipantToCreate> <PersonID>X0007</PersonID> <ValidFrom>2018-12-25T00:00:00</ValidFrom> <ValidTo>2018-12-25T00:00:00</ValidTo> <FulfilmentLimit>1</FulfilmentLimit> <IsLeader>0</IsLeader> <RegisterSubordinateWork>0</RegisterSubordinateWork> </ParticipantToCreate> </Participants> </Request> </Response>
text/json
Sample:
{ "Result": { "Message": "sample string 1", "Code": 2, "ModelStateErr": [ "sample string 1", "sample string 2" ] }, "Request": { "Code": "sample string 1", "Participants": [ { "PersonID": "sample string 1", "ValidFrom": "sample string 2", "ValidTo": "sample string 3", "FulfilmentLimit": 4, "IsLeader": 5, "RegisterSubordinateWork": 6 }, { "PersonID": "sample string 1", "ValidFrom": "sample string 2", "ValidTo": "sample string 3", "FulfilmentLimit": 4, "IsLeader": 5, "RegisterSubordinateWork": 6 } ] } }
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> <Code>sample string 1</Code> <Participants> <ParticipantToCreate> <PersonID>sample string 1</PersonID> <ValidFrom>sample string 2</ValidFrom> <ValidTo>sample string 3</ValidTo> <FulfilmentLimit>4</FulfilmentLimit> <IsLeader>5</IsLeader> <RegisterSubordinateWork>6</RegisterSubordinateWork> </ParticipantToCreate> <ParticipantToCreate> <PersonID>sample string 1</PersonID> <ValidFrom>sample string 2</ValidFrom> <ValidTo>sample string 3</ValidTo> <FulfilmentLimit>4</FulfilmentLimit> <IsLeader>5</IsLeader> <RegisterSubordinateWork>6</RegisterSubordinateWork> </ParticipantToCreate> </Participants> </Request> </Response>