POST api/projectone/DeleteP1Member

Remove a person from a P1 Project.

Request Information

URI Parameters

None.

Body Parameters

P1MemberDeleteBinder
NameDescriptionTypeAdditional information
ProjectId

integer

None.

SpaceId

integer

None.

MemberId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectId": 1,
  "SpaceId": 2,
  "MemberId": 3
}

application/xml, text/xml

Sample:
<P1MemberDeleteBinder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.ProjectOne">
  <MemberId>3</MemberId>
  <ProjectId>1</ProjectId>
  <SpaceId>2</SpaceId>
</P1MemberDeleteBinder>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Remove a person from a P1 Project.

ApiReturn
NameDescriptionTypeAdditional information
Success

boolean

None.

Error

ErrorInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Error": {
    "ErrorCode": 1,
    "ErrorMessage": "sample string 1"
  }
}

application/xml, text/xml

Sample:
<ApiReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common">
  <Error>
    <ErrorCode>1</ErrorCode>
    <ErrorMessage>sample string 1</ErrorMessage>
  </Error>
  <Success>true</Success>
</ApiReturn>