POST api/User/AddUserWashingCard

Request Information

URI Parameters

None.

Body Parameters

AddUserWashingCardModel
NameDescriptionTypeAdditional information
Userid

string

None.

Activityid

string

None.

Usedquota

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Userid": "sample string 1",
  "Activityid": "sample string 2",
  "Usedquota": 3
}

application/xml, text/xml

Sample:
<AddUserWashingCardModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YNF.Model">
  <Activityid>sample string 2</Activityid>
  <Usedquota>3</Usedquota>
  <Userid>sample string 1</Userid>
</AddUserWashingCardModel>

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 'AddUserWashingCardModel'.

Response Information

Resource Description

ResultModel
NameDescriptionTypeAdditional information
IsSucceed

boolean

None.

MessageCode

integer

None.

Message

string

None.

Time

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSucceed": true,
  "MessageCode": 2,
  "Message": "sample string 3",
  "Time": "sample string 4",
  "Data": {}
}

application/xml, text/xml

Sample:
<ResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YNF.Model">
  <Data />
  <IsSucceed>true</IsSucceed>
  <Message>sample string 3</Message>
  <MessageCode>2</MessageCode>
  <Time>sample string 4</Time>
</ResultModel>