POST api/StaticStoreTaskList

静态店铺列表接口

Request Information

URI Parameters

None.

Body Parameters

TaskListParam
NameDescriptionTypeAdditional information
year

string

None.

month

string

None.

APPType

category

string

None.

LocationID

Location

integer

None.

userID

用户ID

integer

None.

token

用户token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "year": "sample string 1",
  "month": "sample string 2",
  "APPType": "sample string 3",
  "LocationID": 4,
  "userID": 5,
  "token": "sample string 6"
}

application/xml, text/xml

Sample:
<TaskListParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Topwin.Adidas.VM.API.Models">
  <token>sample string 6</token>
  <userID>5</userID>
  <APPType>sample string 3</APPType>
  <LocationID>4</LocationID>
  <month>sample string 2</month>
  <year>sample string 1</year>
</TaskListParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BasicResultOfTaskList
NameDescriptionTypeAdditional information
code

integer

None.

msg

string

None.

data

TaskList

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "msg": "sample string 2",
  "data": {
    "Year": "sample string 1",
    "Month": "sample string 2",
    "Categorys": [
      {
        "ID": 1,
        "Title": "sample string 2"
      },
      {
        "ID": 1,
        "Title": "sample string 2"
      }
    ],
    "CategoryWithPDF": [
      {
        "ID": 1,
        "Title": "sample string 2"
      },
      {
        "ID": 1,
        "Title": "sample string 2"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<BasicResultOfTaskListibSt4PRI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Topwin.Adidas.VM.API.Models">
  <code>1</code>
  <data>
    <CategoryWithPDF>
      <Category>
        <ID>1</ID>
        <Title>sample string 2</Title>
      </Category>
      <Category>
        <ID>1</ID>
        <Title>sample string 2</Title>
      </Category>
    </CategoryWithPDF>
    <Categorys>
      <Category>
        <ID>1</ID>
        <Title>sample string 2</Title>
      </Category>
      <Category>
        <ID>1</ID>
        <Title>sample string 2</Title>
      </Category>
    </Categorys>
    <Month>sample string 2</Month>
    <Year>sample string 1</Year>
  </data>
  <msg>sample string 2</msg>
</BasicResultOfTaskListibSt4PRI>