Returns a list of frequently asked questions (FAQs) and their answers related to car rentals. You can request one or more preferred languages using the languages parameter. If content is not available in any of the requested languages, the response defaults to English.
Security
BearerAuth
Request parameters to retrieve FAQs
Required. One or more preferred language codes expressed as IETF language tags (for example, en-gb, es). The API returns FAQs in each requested language where available. If content is not available for a requested language, the response defaults to English.
- https://demandapi.booking.com/3.2https://demandapi.booking.com/3.2/orders/details/cars/faq
- https://demandapi-sandbox.booking.com/3.2https://demandapi-sandbox.booking.com/3.2/orders/details/cars/faq
curl -i -X POST \
https://demandapi.booking.com/3.2/orders/details/cars/faq \
-H 'Authorization: Bearer <YOUR_string_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-Affiliate-Id: 0' \
-d '{
"languages": [
"en-gb",
"fr",
"de",
"es"
]
}'Successful response containing the list of FAQs and corresponding answers, returned in each requested language where available.
Response
{ "request_id": "123456789", "data": { "faqs": [ … ] } }