GET api/Payment/Invoices
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of InvoiceViewModel| Name | Description | Type | Additional 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": "2d21b677-b9e5-43f0-8b71-3891ccbf44ba",
"ClientId": 1,
"PSInvoiceId": "sample string 2",
"PSInvoiceDate": "2026-01-26T05:08:14.1287205+00:00",
"ChargeId": "sample string 3",
"AmountDue": 1.0,
"LastUpdatedPSEventId": "sample string 4",
"PSCustomerId": "sample string 5",
"CustomerName": "sample string 6"
},
{
"InvoiceId": "2d21b677-b9e5-43f0-8b71-3891ccbf44ba",
"ClientId": 1,
"PSInvoiceId": "sample string 2",
"PSInvoiceDate": "2026-01-26T05:08:14.1287205+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>2d21b677-b9e5-43f0-8b71-3891ccbf44ba</InvoiceId>
<LastUpdatedPSEventId>sample string 4</LastUpdatedPSEventId>
<PSCustomerId>sample string 5</PSCustomerId>
<PSInvoiceDate>2026-01-26T05:08:14.1287205+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>2d21b677-b9e5-43f0-8b71-3891ccbf44ba</InvoiceId>
<LastUpdatedPSEventId>sample string 4</LastUpdatedPSEventId>
<PSCustomerId>sample string 5</PSCustomerId>
<PSInvoiceDate>2026-01-26T05:08:14.1287205+00:00</PSInvoiceDate>
<PSInvoiceId>sample string 2</PSInvoiceId>
</InvoiceViewModel>
</ArrayOfInvoiceViewModel>