GET api/Payment/PaymentLines

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentLine
NameDescriptionTypeAdditional information
paymentNo

integer

None.

lineNo

integer

None.

currencyNo

integer

None.

amountInCurrency

decimal number

None.

amountDomestic

decimal number

None.

actualAmount

decimal number

None.

paymentLineStatus

integer

None.

supplierNo

integer

None.

supplierName

string

None.

voucherJournalNo

integer

None.

auditNo

integer

None.

batchDate

date

None.

estimateDate

date

None.

debitDate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "paymentNo": 1,
    "lineNo": 2,
    "currencyNo": 3,
    "amountInCurrency": 4.0,
    "amountDomestic": 5.0,
    "actualAmount": 6.0,
    "paymentLineStatus": 7,
    "supplierNo": 8,
    "supplierName": "sample string 9",
    "voucherJournalNo": 10,
    "auditNo": 11,
    "batchDate": "2025-05-23T22:30:51.2834186+02:00",
    "estimateDate": "2025-05-23T22:30:51.2834186+02:00",
    "debitDate": "2025-05-23T22:30:51.2834186+02:00"
  },
  {
    "paymentNo": 1,
    "lineNo": 2,
    "currencyNo": 3,
    "amountInCurrency": 4.0,
    "amountDomestic": 5.0,
    "actualAmount": 6.0,
    "paymentLineStatus": 7,
    "supplierNo": 8,
    "supplierName": "sample string 9",
    "voucherJournalNo": 10,
    "auditNo": 11,
    "batchDate": "2025-05-23T22:30:51.2834186+02:00",
    "estimateDate": "2025-05-23T22:30:51.2834186+02:00",
    "debitDate": "2025-05-23T22:30:51.2834186+02:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPaymentLine xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <PaymentLine>
    <paymentNo>1</paymentNo>
    <lineNo>2</lineNo>
    <currencyNo>3</currencyNo>
    <amountInCurrency>4</amountInCurrency>
    <amountDomestic>5</amountDomestic>
    <actualAmount>6</actualAmount>
    <paymentLineStatus>7</paymentLineStatus>
    <supplierNo>8</supplierNo>
    <supplierName>sample string 9</supplierName>
    <voucherJournalNo>10</voucherJournalNo>
    <auditNo>11</auditNo>
    <batchDate>2025-05-23T22:30:51.2834186+02:00</batchDate>
    <estimateDate>2025-05-23T22:30:51.2834186+02:00</estimateDate>
    <debitDate>2025-05-23T22:30:51.2834186+02:00</debitDate>
  </PaymentLine>
  <PaymentLine>
    <paymentNo>1</paymentNo>
    <lineNo>2</lineNo>
    <currencyNo>3</currencyNo>
    <amountInCurrency>4</amountInCurrency>
    <amountDomestic>5</amountDomestic>
    <actualAmount>6</actualAmount>
    <paymentLineStatus>7</paymentLineStatus>
    <supplierNo>8</supplierNo>
    <supplierName>sample string 9</supplierName>
    <voucherJournalNo>10</voucherJournalNo>
    <auditNo>11</auditNo>
    <batchDate>2025-05-23T22:30:51.2834186+02:00</batchDate>
    <estimateDate>2025-05-23T22:30:51.2834186+02:00</estimateDate>
    <debitDate>2025-05-23T22:30:51.2834186+02:00</debitDate>
  </PaymentLine>
</ArrayOfPaymentLine>