GET api/TechnicianInfo/GetCommentList?cId={cId}&pageIndex={pageIndex}&pageSize={pageSize}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
cId

string

Required

pageIndex

integer

Default value is 1

pageSize

integer

Default value is 12

Body Parameters

None.

Response Information

Resource Description

CommentPageInfoList
NameDescriptionTypeAdditional information
commentList

Collection of CommentInfo

None.

TotalPageCount

integer

None.

IsLoad

boolean

None.

PageIndex

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "commentList": [
    {
      "NickName": "sample string 1",
      "starLevel": "sample string 2",
      "Name": "sample string 3",
      "AccountImage": "sample string 4",
      "Contents": "sample string 5",
      "CreateTime": "sample string 6",
      "Replys": "sample string 7"
    },
    {
      "NickName": "sample string 1",
      "starLevel": "sample string 2",
      "Name": "sample string 3",
      "AccountImage": "sample string 4",
      "Contents": "sample string 5",
      "CreateTime": "sample string 6",
      "Replys": "sample string 7"
    }
  ],
  "TotalPageCount": 1,
  "IsLoad": true,
  "PageIndex": 3
}

application/xml, text/xml

Sample:
<TechnicianInfoController.CommentPageInfoList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.Beauty.Controllers">
  <IsLoad>true</IsLoad>
  <PageIndex>3</PageIndex>
  <TotalPageCount>1</TotalPageCount>
  <commentList>
    <TechnicianInfoController.CommentInfo>
      <AccountImage>sample string 4</AccountImage>
      <Contents>sample string 5</Contents>
      <CreateTime>sample string 6</CreateTime>
      <Name>sample string 3</Name>
      <NickName>sample string 1</NickName>
      <Replys>sample string 7</Replys>
      <starLevel>sample string 2</starLevel>
    </TechnicianInfoController.CommentInfo>
    <TechnicianInfoController.CommentInfo>
      <AccountImage>sample string 4</AccountImage>
      <Contents>sample string 5</Contents>
      <CreateTime>sample string 6</CreateTime>
      <Name>sample string 3</Name>
      <NickName>sample string 1</NickName>
      <Replys>sample string 7</Replys>
      <starLevel>sample string 2</starLevel>
    </TechnicianInfoController.CommentInfo>
  </commentList>
</TechnicianInfoController.CommentPageInfoList>