POST api/ShopUSer/ShopExchangeEditPost

Request Information

URI Parameters

None.

Body Parameters

ShopExchangeEntity
NameDescriptionTypeAdditional information
Rmk

string

Required

UserName

string

Required

Score

decimal number

Range: inclusive between -100000 and 2147483647

UserToken

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Rmk": "sample string 1",
  "UserName": "sample string 2",
  "Score": 3.0,
  "UserToken": "sample string 4"
}

application/xml, text/xml

Sample:
<ShopExchangeEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopMallWeb.Models.Entity">
  <Rmk>sample string 1</Rmk>
  <Score>3</Score>
  <UserName>sample string 2</UserName>
  <UserToken>sample string 4</UserToken>
</ShopExchangeEntity>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CommResult
NameDescriptionTypeAdditional information
dtCode

integer

None.

dtMsg

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "dtCode": 1,
  "dtMsg": "sample string 2",
  "data": {}
}

application/xml, text/xml

Sample:
<CommResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OpenApi.Models.DTO">
  <data />
  <dtCode>1</dtCode>
  <dtMsg>sample string 2</dtMsg>
</CommResult>