POST api/SprintScore/add
Add a score object into sprint.
Request Information
URI Parameters
None.
Body Parameters
SprintScoreCreateBinder| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectId | integer |
None. |
|
| SprintId | integer |
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,
"SprintId": 2,
"Score": 3,
"OwnerId": 4,
"ReviewedById": 5,
"DateReviewed": "2025-10-31 15:17:26",
"Comment": "sample string 6"
}
application/xml, text/xml
Sample:
<SprintScoreCreateBinder 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>2025-10-31T20:17:26.4183705-07:00</DateReviewed> <OwnerId>4</OwnerId> <ProjectId>1</ProjectId> <ReviewedById>5</ReviewedById> <Score>3</Score> <SprintId>2</SprintId> </SprintScoreCreateBinder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Add a score object into sprint.
API_Data_Int32| Name | Description | Type | Additional 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>