GET api/TourTransactions/Billed/{transactionId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
transactionId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
PartialOfTheInvoiceViewModelName | Description | Type | Additional information |
---|---|---|---|
Bill | decimal number |
None. |
|
PaidOff | boolean |
None. |
|
RestOfTheBill | decimal number |
None. |
|
RestOfTheBillWithoutSupplement | decimal number |
None. |
|
Percentage | decimal number |
None. |
|
PaymentTermBasedValue | decimal number |
None. |
|
PaidValue | decimal number |
None. |
|
Id | integer |
None. |
|
Description | string |
None. |
|
DueDate | date |
None. |
|
PaidDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{ "Bill": 2.0, "PaidOff": false, "RestOfTheBill": 3.0, "RestOfTheBillWithoutSupplement": 4.0, "Percentage": 5.0, "PaymentTermBasedValue": 1.0, "PaidValue": 0.0, "Id": 6, "Description": "sample string 7", "DueDate": "2025-06-26T14:12:47.5184865+00:00", "PaidDate": "2025-06-26T14:12:47.5184865+00:00" }
application/xml, text/xml
Sample:
<PartialOfTheInvoiceViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models.DTO"> <Description>sample string 7</Description> <DueDate>2025-06-26T14:12:47.5184865+00:00</DueDate> <Id>6</Id> <PaidDate>2025-06-26T14:12:47.5184865+00:00</PaidDate> <Bill>2</Bill> <Percentage>5</Percentage> <PreviousBill>1</PreviousBill> <RestOfTheBill>3</RestOfTheBill> <RestOfTheBillWithoutSupplement>4</RestOfTheBillWithoutSupplement> </PartialOfTheInvoiceViewModel>