POST api/Order/SetLeaseImg

Request Information

URI Parameters

None.

Body Parameters

SetLeaseImgViewModel
NameDescriptionTypeAdditional information
FKey

integer

None.

FImage

string

None.

FOptID

integer

None.

FOptName

string

None.

FOptTime

date

None.

FType

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "FKey": 1,
  "FImage": "sample string 2",
  "FOptID": 1,
  "FOptName": "sample string 3",
  "FOptTime": "2025-12-06 13:41:39",
  "FType": 4
}

application/xml, text/xml

Sample:
<SetLeaseImgViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DY.Entity.ViewModel">
  <FImage>sample string 2</FImage>
  <FKey>1</FKey>
  <FOptID>1</FOptID>
  <FOptName>sample string 3</FOptName>
  <FOptTime>2025-12-06T13:41:39.2805544+08:00</FOptTime>
  <FType>4</FType>
</SetLeaseImgViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

MessageModelOfInt32
NameDescriptionTypeAdditional information
Status

integer

None.

Success

boolean

None.

Msg

string

None.

Response

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 200,
  "Success": true,
  "Msg": "sample string 3",
  "Response": 4
}

application/xml, text/xml

Sample:
<MessageModelOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DY.Entity">
  <Msg>sample string 3</Msg>
  <Response>4</Response>
  <Status>200</Status>
  <Success>true</Success>
</MessageModelOfint>