POST api/BookingTemplates/GetIndividualPrice/AsTourOperator
Request Information
URI Parameters
None.
Body Parameters
TourOperatorFixedPackageIndividualPrice| Name | Description | Type | Additional information |
|---|---|---|---|
| Price | decimal number |
Required |
|
| AgentCommission | BookingCommissionBindingModel |
Required |
|
| StaffCommission | BookingCommissionBindingModel |
Required |
Request Formats
application/json, text/json
Sample:
{
"Price": 1.0,
"AgentCommission": {
"Value": 1.0
},
"StaffCommission": {
"Value": 1.0
}
}
application/xml, text/xml
Sample:
<TourOperatorFixedPackageIndividualPrice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models.DTO">
<AgentCommission>
<Value>1</Value>
</AgentCommission>
<StaffCommission>
<Value>1</Value>
</StaffCommission>
<Price>1</Price>
</TourOperatorFixedPackageIndividualPrice>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
decimal numberResponse Formats
application/json, text/json
Sample:
1.0
application/xml, text/xml
Sample:
<decimal xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</decimal>