POST api/Brand/GetBrandCategoryList

获取品牌分类信息

Request Information

URI Parameters

None.

Body Parameters

请求数据

BrandCategoryRequest
NameDescriptionTypeAdditional information
brand_id

品牌Id

integer

None.

page

页码

integer

None.

page_size

每页显示条数

integer

None.

user_id

当前登录者Id

string

None.

token

token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "brand_id": 1,
  "page": 1,
  "page_size": 2,
  "user_id": "sample string 3",
  "token": "sample string 4"
}

application/xml, text/xml

Sample:
<BrandCategoryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">
  <token>sample string 4</token>
  <user_id>sample string 3</user_id>
  <page>1</page>
  <page_size>2</page_size>
  <brand_id>1</brand_id>
</BrandCategoryRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BrandCategoryRequest'.

Response Information

Resource Description

获取品牌分类信息

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.