POST api/SprintScore/edit
Update a score object.
Request Information
URI Parameters
None.
Body Parameters
SprintScoreUpdateBinderName | Description | Type | Additional information |
---|---|---|---|
ScoreItemId | integer |
None. |
|
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:
{ "ScoreItemId": 1, "ProjectId": 2, "SprintId": 3, "Score": 4, "OwnerId": 5, "ReviewedById": 6, "DateReviewed": "2024-12-21 13:19:23", "Comment": "sample string 7" }
application/xml, text/xml
Sample:
<SprintScoreUpdateBinder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding"> <Comment>sample string 7</Comment> <DateReviewed>2024-12-21T17:19:23.0310086-08:00</DateReviewed> <OwnerId>5</OwnerId> <ProjectId>2</ProjectId> <ReviewedById>6</ReviewedById> <Score>4</Score> <SprintId>3</SprintId> <ScoreItemId>1</ScoreItemId> </SprintScoreUpdateBinder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Update a score object.
ApiReturnName | Description | Type | Additional 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>