CalculateBookingCost
Container: CCPServiceNamespace: System.Data.Objects
Summary
No summary yetMethod
The HTTP method for this function import is POSTParameters
| Name | Type | Summary |
|---|---|---|
| bookingDate* | Edm.DateTime | |
| pickUp | AddressFragment | |
| pickUpLocationId* | Edm.Int32 | |
| dropOff | AddressFragment | |
| dropOffLocationId* | Edm.Int32 | |
| vehicleKindName | Edm.String | |
| transporterId* | Edm.Int32 | |
| travelerId* | Edm.Int32 | |
| contractId* | Edm.Int32 | |
| systemIndicationIds* | Edm.Int32 | |
| indicationQuantities* | Edm.Int32 | |
| numberOfBookings* | Edm.Int32 |
Return
Type: Complex type - BudgetCalculationModelIs collection: false
Example
Request URL: https://www.cabmanonline.nl/CCPService/DataServiceCCP.svc/CalculateBookingCostExample body (sent with POST-request):
{
"bookingDate" : "2026-05-29T09:30:13",
"pickUp" : {
"Street" : "street",
"Number" : 1,
"Addition" : "addition",
"PostalCode" : "postalcode",
"State" : "state",
"Town" : "town",
"CountryId" : 1,
"Coordinates" : {
"Latitude" : 51.55404,
"Longitude" : 5.079524,
"FormatName" : "Pixel"
}
},
"pickUpLocationId" : 1,
"dropOff" : {
"Street" : "street",
"Number" : 1,
"Addition" : "addition",
"PostalCode" : "postalcode",
"State" : "state",
"Town" : "town",
"CountryId" : 1,
"Coordinates" : {
"Latitude" : 51.55404,
"Longitude" : 5.079524,
"FormatName" : "Pixel"
}
},
"dropOffLocationId" : 1,
"vehicleKindName" : "Name",
"transporterId" : 1,
"travelerId" : 1,
"contractId" : 1,
"systemIndicationIds" : 1,
"indicationQuantities" : 1,
"numberOfBookings" : 1
}