POST api/Purchase/SaveFlow

Request Information

URI Parameters

None.

Body Parameters

PurchaseDataObject
NameDescriptionTypeAdditional information
PurchaseId

string

None.

CreateUser

string

None.

PurchaseUser

string

None.

Remark

string

None.

IsChecked

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "purchaseId": "sample string 1",
  "createUser": "sample string 2",
  "purchaseUser": "sample string 3",
  "remark": "sample string 4",
  "isChecked": true
}

application/xml, text/xml

Sample:
<PurchaseDataObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <PurchaseId>sample string 1</PurchaseId>
  <CreateUser>sample string 2</CreateUser>
  <PurchaseUser>sample string 3</PurchaseUser>
  <Remark>sample string 4</Remark>
  <IsChecked>true</IsChecked>
</PurchaseDataObject>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JsonResultObject
NameDescriptionTypeAdditional information
IsSucceed

boolean

None.

Remark

string

None.

OpTime

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "isSucceed": true,
  "remark": "sample string 2",
  "opTime": "sample string 3",
  "result": {}
}

application/xml, text/xml

Sample:
<JsonResultObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <IsSucceed>true</IsSucceed>
  <Remark>sample string 2</Remark>
  <OpTime>sample string 3</OpTime>
  <Result />
</JsonResultObject>