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 DealPaymentDataDTOName | 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-05-11T13:35:26.8912641-04:00", "Amount": 4.0, "PaymentMode": "sample string 5", "DealID": 6 }, { "TransactionID": 1, "PaymentModeID": 64, "TransactionDate": "2025-05-11T13:35:26.8912641-04: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-05-11T13:35:26.8912641-04:00</TransactionDate> <TransactionID>1</TransactionID> </DealPaymentDataDTO> <DealPaymentDataDTO> <Amount>4</Amount> <DealID>6</DealID> <PaymentMode>sample string 5</PaymentMode> <PaymentModeID>64</PaymentModeID> <TransactionDate>2025-05-11T13:35:26.8912641-04:00</TransactionDate> <TransactionID>1</TransactionID> </DealPaymentDataDTO> </ArrayOfDealPaymentDataDTO>