POST BusineesAnalysis/GetPayModeAnalysis

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "StMenu": "sample string 1",
  "AcYr": "sample string 2",
  "CompCode": "sample string 3",
  "StartDate": "sample string 4",
  "EndDate": "sample string 5",
  "CumulativeFlag": "sample string 6"
}

text/html

Sample:
{"StMenu":"sample string 1","AcYr":"sample string 2","CompCode":"sample string 3","StartDate":"sample string 4","EndDate":"sample string 5","CumulativeFlag":"sample string 6"}

application/xml, text/xml

Sample:
<PayModeInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Controllers">
  <AcYr>sample string 2</AcYr>
  <CompCode>sample string 3</CompCode>
  <CumulativeFlag>sample string 6</CumulativeFlag>
  <EndDate>sample string 5</EndDate>
  <StMenu>sample string 1</StMenu>
  <StartDate>sample string 4</StartDate>
</PayModeInfoRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
[
  {
    "PayMode": "sample string 1",
    "TranCount": 2,
    "Amount": 3.1
  },
  {
    "PayMode": "sample string 1",
    "TranCount": 2,
    "Amount": 3.1
  },
  {
    "PayMode": "sample string 1",
    "TranCount": 2,
    "Amount": 3.1
  }
]

text/html

Sample:
[{"PayMode":"sample string 1","TranCount":2,"Amount":3.1},{"PayMode":"sample string 1","TranCount":2,"Amount":3.1},{"PayMode":"sample string 1","TranCount":2,"Amount":3.1}]

application/xml, text/xml

Sample:
<ArrayOfPayModeInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Controllers">
  <PayModeInfo>
    <Amount>3.1</Amount>
    <PayMode>sample string 1</PayMode>
    <TranCount>2</TranCount>
  </PayModeInfo>
  <PayModeInfo>
    <Amount>3.1</Amount>
    <PayMode>sample string 1</PayMode>
    <TranCount>2</TranCount>
  </PayModeInfo>
  <PayModeInfo>
    <Amount>3.1</Amount>
    <PayMode>sample string 1</PayMode>
    <TranCount>2</TranCount>
  </PayModeInfo>
</ArrayOfPayModeInfo>