POST api/PromotionPlan/GetPromotioners

获取架构下的促销员

Request Information

URI Parameters

None.

Body Parameters

GetPromotionersDto
NameDescriptionTypeAdditional information
SearchText

string

None.

pageIndex

integer

None.

pageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "SearchText": "sample string 1",
  "pageIndex": 2,
  "pageSize": 3
}

application/xml, text/xml

Sample:
<GetPromotionersDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity.DTO.ApiDTO">
  <SearchText>sample string 1</SearchText>
  <pageIndex>2</pageIndex>
  <pageSize>3</pageSize>
</GetPromotionersDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultModelOfObject
NameDescriptionTypeAdditional information
Code

ReturnCode

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 200,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<ResultModelOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Utility">
  <Code>Success</Code>
  <Data />
  <Message>sample string 1</Message>
</ResultModelOfanyType>