GET api/GetAllSettlementPayment?jsonData={jsonData}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
jsonData

string

Required

Body Parameters

None.

Response Information

Resource Description

SettlementPaymentVm
NameDescriptionTypeAdditional information
Id

integer

None.

Date

string

None.

Amount

integer

None.

PaymentType

string

None.

From

string

None.

To

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Date": "sample string 2",
  "Amount": 3,
  "PaymentType": "sample string 4",
  "From": "sample string 5",
  "To": "sample string 6"
}

application/xml, text/xml

Sample:
<SettlementPaymentVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.PG">
  <Amount>3</Amount>
  <Date>sample string 2</Date>
  <From>sample string 5</From>
  <Id>1</Id>
  <PaymentType>sample string 4</PaymentType>
  <To>sample string 6</To>
</SettlementPaymentVm>