POST cubes/projectinit/editproject/{userConnectedID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userConnectedID

integer

Required

Body Parameters

EditProjectInformation
NameDescriptionTypeAdditional information
ProjectID

integer

None.

Status

integer

None.

ReportingLevelID

integer

None.

CategoryID

integer

None.

Measure

string

None.

Complaint

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectID": 1,
  "Status": 2,
  "ReportingLevelID": 3,
  "CategoryID": 4,
  "Measure": "sample string 5",
  "Complaint": "sample string 6"
}

application/xml, text/xml

Sample:
<EditProjectInformation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CubesApi.Models">
  <CategoryID>4</CategoryID>
  <Complaint>sample string 6</Complaint>
  <Measure>sample string 5</Measure>
  <ProjectID>1</ProjectID>
  <ReportingLevelID>3</ReportingLevelID>
  <Status>2</Status>
</EditProjectInformation>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EditProjectInformation'.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>