GET api/{area}/Score?aid={aid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| aid | string |
Required |
|
| area | string |
None. |
Body Parameters
None.
Response Information
Resource Description
ScoreInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalScore | integer |
None. |
|
| BlaneScore | integer |
None. |
|
| logs | Collection of ScoreLogInfo |
None. |
|
| IsExchangePro | boolean |
None. |
|
| IsDeductible | boolean |
None. |
|
| IntegralUnit | string |
None. |
|
| IntegralAlias | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalScore": 1,
"BlaneScore": 2,
"logs": [
{
"ScoreType": "sample string 1",
"ScoreValue": 2,
"Info": "sample string 3",
"CreateTime": "sample string 4"
},
{
"ScoreType": "sample string 1",
"ScoreValue": 2,
"Info": "sample string 3",
"CreateTime": "sample string 4"
}
],
"IsExchangePro": true,
"IsDeductible": true,
"IntegralUnit": "sample string 5",
"IntegralAlias": "sample string 6"
}
application/xml, text/xml
Sample:
<ScoreController.ScoreInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Controllers">
<BlaneScore>2</BlaneScore>
<IntegralAlias>sample string 6</IntegralAlias>
<IntegralUnit>sample string 5</IntegralUnit>
<IsDeductible>true</IsDeductible>
<IsExchangePro>true</IsExchangePro>
<TotalScore>1</TotalScore>
<logs>
<ScoreController.ScoreLogInfo>
<CreateTime>sample string 4</CreateTime>
<Info>sample string 3</Info>
<ScoreType>sample string 1</ScoreType>
<ScoreValue>2</ScoreValue>
</ScoreController.ScoreLogInfo>
<ScoreController.ScoreLogInfo>
<CreateTime>sample string 4</CreateTime>
<Info>sample string 3</Info>
<ScoreType>sample string 1</ScoreType>
<ScoreValue>2</ScoreValue>
</ScoreController.ScoreLogInfo>
</logs>
</ScoreController.ScoreInfo>