POST api/PerformanceManage/SavePerformanceInfo

Request Information

URI Parameters

None.

Body Parameters

PerformanceManageDataObject
NameDescriptionTypeAdditional information
PerformanceId

string

None.

ProjectId

string

None.

ProjectName

string

None.

RoleId

string

None.

RoleName

string

None.

UserId

string

None.

UserName

string

None.

ShareAmount

decimal number

None.

Percentage

decimal number

None.

Bonus

decimal number

None.

Status

string

None.

Remark

string

None.

Request Formats

application/json, text/json

Sample:
{
  "performanceId": "sample string 1",
  "projectId": "sample string 2",
  "projectName": "sample string 3",
  "roleId": "sample string 4",
  "roleName": "sample string 5",
  "userId": "sample string 6",
  "userName": "sample string 7",
  "shareAmount": 8.0,
  "percentage": 9.0,
  "bonus": 10.0,
  "status": "sample string 11",
  "remark": "sample string 12"
}

application/xml, text/xml

Sample:
<PerformanceManageDataObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <PerformanceId>sample string 1</PerformanceId>
  <ProjectId>sample string 2</ProjectId>
  <ProjectName>sample string 3</ProjectName>
  <RoleId>sample string 4</RoleId>
  <RoleName>sample string 5</RoleName>
  <UserId>sample string 6</UserId>
  <UserName>sample string 7</UserName>
  <ShareAmount>8</ShareAmount>
  <Percentage>9</Percentage>
  <Bonus>10</Bonus>
  <Status>sample string 11</Status>
  <Remark>sample string 12</Remark>
</PerformanceManageDataObject>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JsonResultObject
NameDescriptionTypeAdditional information
IsSucceed

boolean

None.

Remark

string

None.

OpTime

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "isSucceed": true,
  "remark": "sample string 2",
  "opTime": "sample string 3",
  "result": {}
}

application/xml, text/xml

Sample:
<JsonResultObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <IsSucceed>true</IsSucceed>
  <Remark>sample string 2</Remark>
  <OpTime>sample string 3</OpTime>
  <Result />
</JsonResultObject>