POST api/PeriodScore/add

Add a score object into sprint.

Request Information

URI Parameters

None.

Body Parameters

PeriodScoreCreateBinder
NameDescriptionTypeAdditional information
ProjectId

integer

None.

JobPerformanceIssueId

integer

None.

StartDate

date

None.

FinishDate

date

None.

Score

integer

None.

OwnerId

integer

None.

ReviewedById

integer

None.

DateReviewed

date

None.

Comment

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectId": 1,
  "JobPerformanceIssueId": 2,
  "StartDate": "2024-12-21 19:09:37",
  "FinishDate": "2024-12-21 19:09:37",
  "Score": 3,
  "OwnerId": 4,
  "ReviewedById": 5,
  "DateReviewed": "2024-12-21 15:09:37",
  "Comment": "sample string 6"
}

application/xml, text/xml

Sample:
<PeriodScoreCreateBinder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding">
  <Comment>sample string 6</Comment>
  <DateReviewed>2024-12-21T19:09:37.9578479-08:00</DateReviewed>
  <FinishDate>2024-12-21T19:09:37.9578479-08:00</FinishDate>
  <JobPerformanceIssueId>2</JobPerformanceIssueId>
  <OwnerId>4</OwnerId>
  <ProjectId>1</ProjectId>
  <ReviewedById>5</ReviewedById>
  <Score>3</Score>
  <StartDate>2024-12-21T19:09:37.9578479-08:00</StartDate>
</PeriodScoreCreateBinder>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Add a score object into sprint.

API_Data_Int32
NameDescriptionTypeAdditional information
Success

boolean

None.

Error

ErrorInfo

None.

Data

integer

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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