GET api/Payment/Invoices

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of InvoiceViewModel
NameDescriptionTypeAdditional information
InvoiceId

globally unique identifier

None.

ClientId

integer

None.

PSInvoiceId

string

None.

PSInvoiceDate

date

None.

ChargeId

string

None.

AmountDue

decimal number

None.

LastUpdatedPSEventId

string

None.

PSCustomerId

string

None.

CustomerName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "InvoiceId": "21656103-bf07-4605-a9d0-ea90fd86917c",
    "ClientId": 1,
    "PSInvoiceId": "sample string 2",
    "PSInvoiceDate": "2025-09-01T22:02:53.6479902+00:00",
    "ChargeId": "sample string 3",
    "AmountDue": 1.0,
    "LastUpdatedPSEventId": "sample string 4",
    "PSCustomerId": "sample string 5",
    "CustomerName": "sample string 6"
  },
  {
    "InvoiceId": "21656103-bf07-4605-a9d0-ea90fd86917c",
    "ClientId": 1,
    "PSInvoiceId": "sample string 2",
    "PSInvoiceDate": "2025-09-01T22:02:53.6479902+00:00",
    "ChargeId": "sample string 3",
    "AmountDue": 1.0,
    "LastUpdatedPSEventId": "sample string 4",
    "PSCustomerId": "sample string 5",
    "CustomerName": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfInvoiceViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdminPortal.Domain.ViewModels">
  <InvoiceViewModel>
    <AmountDue>1</AmountDue>
    <ChargeId>sample string 3</ChargeId>
    <ClientId>1</ClientId>
    <CustomerName>sample string 6</CustomerName>
    <InvoiceId>21656103-bf07-4605-a9d0-ea90fd86917c</InvoiceId>
    <LastUpdatedPSEventId>sample string 4</LastUpdatedPSEventId>
    <PSCustomerId>sample string 5</PSCustomerId>
    <PSInvoiceDate>2025-09-01T22:02:53.6479902+00:00</PSInvoiceDate>
    <PSInvoiceId>sample string 2</PSInvoiceId>
  </InvoiceViewModel>
  <InvoiceViewModel>
    <AmountDue>1</AmountDue>
    <ChargeId>sample string 3</ChargeId>
    <ClientId>1</ClientId>
    <CustomerName>sample string 6</CustomerName>
    <InvoiceId>21656103-bf07-4605-a9d0-ea90fd86917c</InvoiceId>
    <LastUpdatedPSEventId>sample string 4</LastUpdatedPSEventId>
    <PSCustomerId>sample string 5</PSCustomerId>
    <PSInvoiceDate>2025-09-01T22:02:53.6479902+00:00</PSInvoiceDate>
    <PSInvoiceId>sample string 2</PSInvoiceId>
  </InvoiceViewModel>
</ArrayOfInvoiceViewModel>