GET Score/getWeekScorePKInfo

获取分数PK数据(周)

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

获取分数PK数据(周)

Collection of ScorePKResult
NameDescriptionTypeAdditional information
DisplayName

显示名字 优先级=》备注名字>设置首个家庭成员的名字

string

None.

HeadImg

头像

string

None.

No

当前排名

integer

None.

Exper

分数(经验值)

integer

None.

fid

用户ID

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": [
    {
      "DisplayName": "sample string 1",
      "HeadImg": "sample string 2",
      "No": 3,
      "Exper": 4,
      "fid": 5
    },
    {
      "DisplayName": "sample string 1",
      "HeadImg": "sample string 2",
      "No": 3,
      "Exper": 4,
      "fid": 5
    }
  ],
  "msg": null
}

application/xml, text/xml

Sample:
<ArrayOfScorePKResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Result">
  <ScorePKResult>
    <DisplayName>sample string 1</DisplayName>
    <Exper>4</Exper>
    <HeadImg>sample string 2</HeadImg>
    <No>3</No>
    <fid>5</fid>
  </ScorePKResult>
  <ScorePKResult>
    <DisplayName>sample string 1</DisplayName>
    <Exper>4</Exper>
    <HeadImg>sample string 2</HeadImg>
    <No>3</No>
    <fid>5</fid>
  </ScorePKResult>
</ArrayOfScorePKResult>