POST api/OrderInfo/GetOrderInfo

Request Information

URI Parameters

None.

Body Parameters

GetOrderInfoInput
NameDescriptionTypeAdditional information
OrderId

string

None.

DateFrom

date

None.

DateTo

date

None.

Other

string

None.

Customer

string

None.

PROVIDER_USER_ID

string

None.

sortCol

string

None.

sortOrder

string

None.

currentPage

integer

None.

pageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "OrderId": "sample string 1",
  "DateFrom": "2026-04-14T12:38:28.8972282+08:00",
  "DateTo": "2026-04-14T12:38:28.8991874+08:00",
  "Other": "sample string 2",
  "Customer": "sample string 3",
  "PROVIDER_USER_ID": "sample string 4",
  "sortCol": "sample string 5",
  "sortOrder": "sample string 6",
  "currentPage": 1,
  "pageSize": 1
}

application/xml, text/xml

Sample:
<GetOrderInfoInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebMesApi.Models.Customer.LogInOut">
  <currentPage xmlns="http://schemas.datacontract.org/2004/07/WebMesApi.Models.Customer">1</currentPage>
  <pageSize xmlns="http://schemas.datacontract.org/2004/07/WebMesApi.Models.Customer">1</pageSize>
  <Customer>sample string 3</Customer>
  <DateFrom>2026-04-14T12:38:28.8972282+08:00</DateFrom>
  <DateTo>2026-04-14T12:38:28.8991874+08:00</DateTo>
  <OrderId>sample string 1</OrderId>
  <Other>sample string 2</Other>
  <PROVIDER_USER_ID>sample string 4</PROVIDER_USER_ID>
  <sortCol>sample string 5</sortCol>
  <sortOrder>sample string 6</sortOrder>
</GetOrderInfoInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RequestReturn
NameDescriptionTypeAdditional information
code

integer

None.

message

string

None.

data

Object

None.

status

boolean

None.

dataCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "message": "sample string 2",
  "data": {},
  "status": true,
  "dataCount": 5
}

application/xml, text/xml

Sample:
<RequestReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebMesApi.Models.Customer">
  <code>1</code>
  <data />
  <dataCount>5</dataCount>
  <message>sample string 2</message>
  <status>true</status>
</RequestReturn>