POST api/GetImgPath

根据编号返回图片路径

Request Information

URI Parameters

None.

Body Parameters

ImgPath
NameDescriptionTypeAdditional information
ArticleNO

string

None.

userID

用户ID

integer

None.

token

用户token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ArticleNO": "sample string 1",
  "userID": 2,
  "token": "sample string 3"
}

application/xml, text/xml

Sample:
<ImgPath xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Topwin.Adidas.VM.API.Models">
  <token>sample string 3</token>
  <userID>2</userID>
  <ArticleNO>sample string 1</ArticleNO>
</ImgPath>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BasicResultOfString
NameDescriptionTypeAdditional information
code

integer

None.

msg

string

None.

data

string

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "msg": "sample string 2",
  "data": "sample string 3"
}

application/xml, text/xml

Sample:
<BasicResultOfstring 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>sample string 3</data>
  <msg>sample string 2</msg>
</BasicResultOfstring>