- Authorization
- Introduction
- Guides
- Car Rental
- Comments
- Currencies
- Emails
- Addresses
- Fields
- Blocked Days
- Customer Credits
- Daily Manifest
- Fines
- Packages
- Quotes
- Rate Types
- Rates
- Reservation Attempts
- Extensions
- External Charges
- Adjustments
- Payments
- Refunds
- Reservations
- Updates the status of a reservation to Open
- Updates the status of a reservation to Cancel
- Updates the status of a reservation to Pending
- Updates the status of a reservation to Quote
- Updates the status of a reservation to No Show
- Returns the details and validations required for the dates step
- Validates the dates and return a list of available classes for that period with the respective prices for each vehicle class
- Updates the vehicle class of a reservation (Only Existing Bookings)
- Returns a list of applicable additional charges based on the selection of dates, brand and vehicle class
- Returns the price for the selection of charges and vehicle class
- Creates or updates a customer in the system
- Confirms and create the reservation in the system
- Updates a reservation
- shows a list of reservations
- show rental agreement of specific reservation
- Set date of sign
- Find a specific reservation
- Assign vehicle
- Detach vehicle
- Available Vehicles
- Upload primary driver signature
- Returns the available cars for a given location and reservation date range
- Vehicle Replacements
- Reservation Agents
- Seasons
- Security Deposits
- Webhooks
- Filters
- Preferences
- Contacts
- files
- Fleets
- Payment Gateways
- Shows a list of credit cards for one customer
- Delete payment gateway
- Shows a list of payment methods
- Finds payment method by ID
- Returns payment method button
- Returns payment method form
- Finds payment transaction by UUID
- shows a list of payment transactions
- Create payment transaction
- Refunds a payment transaction
- Shows a list of stripe locations per gateway
- Returns a connection token for a given location
- Returns a connection token for stripe terminal
- Sheets
List all rates v2
GET
/car-rental/rates/
Car Rental/Rates
Request
Query Params
season_id
optional
vehicle_class_id
optional
rate_type_id
optional
rate_code
optional
Header Params
Accept
string
required
Default:
application/vnd.api.v2+json
Authorization
string
required
Default:
{{AUTHENTICATION_TOKEN}}
Responses
🟢200OK
application/json
Body
No schema defined
Example
{
"success": true,
"status_code": 200,
"errors": [],
"data": {
"total": 1,
"per_page": "10",
"current_page": 1,
"last_page": 1,
"next_page_url": "http://api.caag.server/api/car-rental/rates?page=2",
"prev_page_url": null,
"from": 1,
"to": 2,
"data": [
{
"id": 4,
"rate_type_id": null,
"rate_code": 4,
"decreasing_rates_based_on_intervals": false,
"decreasing_rates_based_on_intervals_hourly": false,
"hourly_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "0.00",
"usd_amount": "0.00",
"amount_for_display": "$0.00"
},
"daily_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "60.00",
"usd_amount": "60.00",
"amount_for_display": "$60.00"
},
"weekly_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "300.00",
"usd_amount": "300.00",
"amount_for_display": "$300.00"
},
"monthly_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "1100.00",
"usd_amount": "1100.00",
"amount_for_display": "$1,100.00"
},
"daily_intervals": [
{
"order": "",
"price": "",
"end_interval": "",
"start_interval": ""
}
],
"hourly_intervals": [
{
"order": "",
"price": "",
"end_interval": "",
"start_interval": ""
}
],
"daily_interval_lowest_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "0.00",
"usd_amount": "0.00",
"amount_for_display": "$0.00"
},
"daily_interval_avg_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "0.00",
"usd_amount": "0.00",
"amount_for_display": "$0.00"
},
"daily_interval_highest_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "0.00",
"usd_amount": "0.00",
"amount_for_display": "$0.00"
},
"hourly_interval_lowest_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "0.00",
"usd_amount": "0.00",
"amount_for_display": "$0.00"
},
"hourly_interval_avg_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "0.00",
"usd_amount": "0.00",
"amount_for_display": "$0.00"
},
"hourly_interval_highest_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "0.00",
"usd_amount": "0.00",
"amount_for_display": "$0.00"
},
"final_daily_rate": {
"currency": "usd",
"currency_icon": "$",
"amount": "60.00",
"usd_amount": "60.00",
"amount_for_display": "$60.00"
}
}
]
}
}
🟠410Record Gone
🟠422Parameter Error
🔴500Server Error
Modified at 2025-03-28 15:05:28