POST v1/Sum/GetPaymentSummaryUnified

Request Information

URI Parameters

None.

Body Parameters

SaleSummaryData
NameDescriptionTypeAdditional information
BranchCode

integer

None.

FromDate

date

None.

ToDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "BranchCode": 1,
  "FromDate": "2026-07-25T11:31:00.0173417+05:30",
  "ToDate": "2026-07-25T11:31:00.0173417+05:30"
}

text/xml

Sample:
<SaleSummaryData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppEntity">
  <BranchCode>1</BranchCode>
  <FromDate>2026-07-25T11:31:00.0173417+05:30</FromDate>
  <ToDate>2026-07-25T11:31:00.0173417+05:30</ToDate>
</SaleSummaryData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of GetPaymentSummaryUnified_Result
NameDescriptionTypeAdditional information
PaymentType

string

None.

Amount

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PaymentType": "sample string 1",
    "Amount": 2.0
  },
  {
    "PaymentType": "sample string 1",
    "Amount": 2.0
  }
]

text/xml

Sample:
<ArrayOfGetPaymentSummaryUnified_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppEntity">
  <GetPaymentSummaryUnified_Result>
    <Amount>2</Amount>
    <PaymentType>sample string 1</PaymentType>
  </GetPaymentSummaryUnified_Result>
  <GetPaymentSummaryUnified_Result>
    <Amount>2</Amount>
    <PaymentType>sample string 1</PaymentType>
  </GetPaymentSummaryUnified_Result>
</ArrayOfGetPaymentSummaryUnified_Result>