GET api/Payment/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PaymentS| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentID | integer |
None. |
|
| ExpirationDate | date |
None. |
|
| InvoiceDate | date |
None. |
|
| PaymentDate | date |
None. |
|
| Amount | decimal number |
None. |
|
| InternalNumber | string |
None. |
|
| InvoiceNumber | integer |
None. |
|
| OrderNumber | integer |
None. |
|
| Year | integer |
None. |
|
| CustomerID | integer |
None. |
|
| Notes | string |
None. |
|
| Type | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PaymentID": 1,
"ExpirationDate": "2026-07-10T17:00:59.80312+02:00",
"InvoiceDate": "2026-07-10T17:00:59.80312+02:00",
"PaymentDate": "2026-07-10T17:00:59.80312+02:00",
"Amount": 4.0,
"InternalNumber": "sample string 5",
"InvoiceNumber": 1,
"OrderNumber": 1,
"Year": 1,
"CustomerID": 6,
"Notes": "sample string 7",
"Type": "sample string 8"
}
application/xml, text/xml
Sample:
<PaymentS xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iCircleCommon"> <Amount>4</Amount> <CustomerID>6</CustomerID> <ExpirationDate>2026-07-10T17:00:59.80312+02:00</ExpirationDate> <InternalNumber>sample string 5</InternalNumber> <InvoiceDate>2026-07-10T17:00:59.80312+02:00</InvoiceDate> <InvoiceNumber>1</InvoiceNumber> <Notes>sample string 7</Notes> <OrderNumber>1</OrderNumber> <PaymentDate>2026-07-10T17:00:59.80312+02:00</PaymentDate> <PaymentID>1</PaymentID> <Type>sample string 8</Type> <Year>1</Year> </PaymentS>