Skip to main content

Create a Booking and Handle Payments with Smily Payment Gateway

Preface

This guide will walk you through the process of creating bookings and handling payments using the Smily payment gateway. By integrating with our API, you can seamlessly manage bookings and offer a secure payment experience to your users.

Create a quote

Before creating a booking, you need to confirm the price and availability of the rental. To do this, you must create a quote by making a POST request to the /api/ota/v1/quotes endpoint.

TOKEN="YOUR_TOKEN"
API_URL="API_URL"

curl -X POST \
"$API_URL/api/ota/v1/quotes" \
-H "User-Agent: Api client" \
-H "Accept: application/vnd.api+json" \
-H "Content-Type: application/vnd.api+json" \
-H "Authorization: Bearer $TOKEN" \
-d '{
"data": {
"attributes": {
"start-at": "2023-08-04",
"end-at": "2023-08-11",
"adults": 20,
"children": 0,
"rental-id": 428
},
"type": "quotes"
}
}'

After successfully creating a quote, simply redirect the user to the provided booking-url. This will take them to the Smily Payment Gateway's payment page, where they can complete the payment and finalize the booking.