GET api/Deal/GetDealPaymentData?DealID={DealID}
Get list of Deal Payments Data
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DealID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DealPaymentDataDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| TransactionID | integer |
None. |
|
| PaymentModeID | byte |
None. |
|
| TransactionDate | date |
None. |
|
| Amount | decimal number |
None. |
|
| PaymentMode | string |
None. |
|
| DealID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TransactionID": 1,
"PaymentModeID": 64,
"TransactionDate": "2025-11-05T05:24:01.2359316-05:00",
"Amount": 4.0,
"PaymentMode": "sample string 5",
"DealID": 6
},
{
"TransactionID": 1,
"PaymentModeID": 64,
"TransactionDate": "2025-11-05T05:24:01.2359316-05:00",
"Amount": 4.0,
"PaymentMode": "sample string 5",
"DealID": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfDealPaymentDataDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DC.Core.Model">
<DealPaymentDataDTO>
<Amount>4</Amount>
<DealID>6</DealID>
<PaymentMode>sample string 5</PaymentMode>
<PaymentModeID>64</PaymentModeID>
<TransactionDate>2025-11-05T05:24:01.2359316-05:00</TransactionDate>
<TransactionID>1</TransactionID>
</DealPaymentDataDTO>
<DealPaymentDataDTO>
<Amount>4</Amount>
<DealID>6</DealID>
<PaymentMode>sample string 5</PaymentMode>
<PaymentModeID>64</PaymentModeID>
<TransactionDate>2025-11-05T05:24:01.2359316-05:00</TransactionDate>
<TransactionID>1</TransactionID>
</DealPaymentDataDTO>
</ArrayOfDealPaymentDataDTO>