POST api/Order/SelfOrderUS/RequestServant

Request Information

URI Parameters

None.

Body Parameters

CallWaitStaffParam
NameDescriptionTypeAdditional information
Note

string

None.

OrderID

globally unique identifier

None.

IsMoreWater

boolean

None.

IsMoreTissue

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Note": "sample string 1",
  "OrderID": "08ed939f-e7f1-4a61-8c13-e72c84a6215e",
  "IsMoreWater": true,
  "IsMoreTissue": true
}

application/xml, text/xml

Sample:
<CallWaitStaffParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MISA.QLNH.BE.BO">
  <IsMoreTissue>true</IsMoreTissue>
  <IsMoreWater>true</IsMoreWater>
  <Note>sample string 1</Note>
  <OrderID>08ed939f-e7f1-4a61-8c13-e72c84a6215e</OrderID>
</CallWaitStaffParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIOrderOnlineResultOfBoolean
NameDescriptionTypeAdditional information
Data

boolean

None.

Success

boolean

None.

ErrorMessage

string

None.

ErrorType

OrderOnlineAPIErrorType

None.

Total

integer

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": true,
  "Success": true,
  "ErrorMessage": "sample string 3",
  "ErrorType": 0,
  "Total": 4,
  "Message": "sample string 5"
}

application/xml, text/xml

Sample:
<APIOrderOnlineResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MISA.QLNH.BE.BO">
  <Data>true</Data>
  <ErrorMessage>sample string 3</ErrorMessage>
  <ErrorType>None</ErrorType>
  <Message>sample string 5</Message>
  <Success>true</Success>
  <Total>4</Total>
</APIOrderOnlineResultOfboolean>