GET api/TourTransactions/ToBePayed/{transactionId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| transactionId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
PaymentTermsOfCustomer| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| PaymentPercentage | decimal number |
None. |
|
| DueDate | date |
None. |
|
| PayDate | date |
None. |
|
| PaymentValue | decimal number |
None. |
|
| PaymentValueEndCustomer | decimal number |
None. |
|
| CurrencyId | string |
None. |
|
| Description | string |
String length: inclusive between 0 and 100 |
|
| IsPayed | boolean |
None. |
|
| PaidValue | decimal number |
None. |
|
| IsLockGuest | boolean |
None. |
|
| Sequence | integer |
None. |
|
| IntervalDays | integer |
None. |
|
| IsAfterBookingBased | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"PaymentPercentage": 2.0,
"DueDate": "2025-12-14T02:02:39.3304779+00:00",
"PayDate": "2025-12-14T02:02:39.3304779+00:00",
"PaymentValue": 4.0,
"PaymentValueEndCustomer": 5.0,
"CurrencyId": "sample string 6",
"Description": "sample string 7",
"IsPayed": true,
"PaidValue": 9.0,
"IsLockGuest": true,
"Sequence": 11,
"IntervalDays": 12,
"IsAfterBookingBased": true
}
application/xml, text/xml
Sample:
<PaymentTermsOfCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models.DTO"> <CurrencyId>sample string 6</CurrencyId> <Description>sample string 7</Description> <DueDate>2025-12-14T02:02:39.3304779+00:00</DueDate> <Id>1</Id> <IntervalDays>12</IntervalDays> <IsAfterBookingBased>true</IsAfterBookingBased> <IsLockGuest>true</IsLockGuest> <IsPayed>true</IsPayed> <PaidValue>9</PaidValue> <PayDate>2025-12-14T02:02:39.3304779+00:00</PayDate> <PaymentPercentage>2</PaymentPercentage> <PaymentValue>4</PaymentValue> <PaymentValueEndCustomer>5</PaymentValueEndCustomer> <Sequence>11</Sequence> </PaymentTermsOfCustomer>