💳 Creating a Checkout Process
Learn how to create a checkout process for your channel.
Creating a checkout process for a ticket can be a little bit tricky, but we’re here to help you with that. In this guide, we’ll show you how to create a checkout process for your channel.
We will go through the following steps:
- Fetching the events information with the ticket rates and availability.
- Creating a checkout session.
- Creating a webhook endpoint
- Waiting for the payment confirmation via webhook.
- Additionaly, we will show you how to handle the payment confirmation.
Fetching the events information
The event information is available through the events endpoint. You can filter the events by date range, location, and organization.
Now that you have the event information, you can display it on your website or app.
Inside the ticket_rates
array, you will find the name, prices, current price and availability of this prices.
This information will show you the ticket rates available for the event. You can display the ticket rates on your website or app.
Also, inside a ticket_rate
object, you will find the prices
array, which contains the different prices available for the ticket rate. You can just focus on the current_price
object, which contains the current price available for the ticket rate.
Also, the ticket_rate
may contain other information like supplements
, warranty
, availability
, available
, min
, max
, questions
and fields
.
fields
are the fieds that the user can or must fill before buying the ticket rate. It can be a text field or a select field.min
andmax
are the minimum and maximum number of tickets that can be bought in a unic checkout session.questions
are the questions that the user can or must answer before buying the ticket depending if thequestion
is required or not.warranty
is the warranty information for the ticket rate. It can be bought or not depending on theenabled
field. Also, it contains thepercentage
andhours
that the warranty is available.available
shows if the ticket rate is available or not.availability.available
shows the number of tickets available.availability.sold
shows the number of tickets sold.supplements
are additional items that can be bought with the ticket rate. It can only be bought one item of each supplement.
Creating a checkout session
Ones the user selects the ticket rate and the quantity of tickets, you can create a checkout session with the checkout endpoint.
Also, to recive the payment confirmation you will need to create a webhook endpoint. If you need to go deeper on how to handle webhook events you can check the Listening to Webhooks recipe.
In order to create the checkout session, you will need to send a POST request to the tickets checkout endpoint with the following information:
redirect_url
: The URL where the user will be redirected after the payment confirmation.error_url
: The URL where the Fourvenues API will send the payment confirmation.- ‘send_resources’: If you want Fourvenues to send the ticekt via email, SMS or / and WhatsApp(r) after the payment confirmation.
metadata
: Free format object value object that you can use to store any information you want. Max 1kb.ticket_rate_id
: The ticket rate id that the user wants to buy.discount_code
: (Optional) The discount code that the user wants to use.tickets
: An array of objects with the ticket information.tickets[].email ... tickets[].full_name
: The ticket information that is required as shown in thefields
array of the ticket rate object.tickets[].qr_code
: (Optional) The QR code that will be used to validate the ticket. If not provided, Fourvenues will generate one.tickets[].price_id
: (Optional) The price id of the current_price you have shown to the user. If not provided, Fourvenues will use the current_price of the ticket rate. If provided, it will return a flag in the response to show if the price with what the checkout session has been generated is the same as the one you have shown to the user. Flag name:conditions_changed
.tickets[].supplements
: (Optional) An array of objects with the supplement information.tickets[].supplements[].supplement_id
: The supplement id.tickets[].warranty
: (Optional if the ticket rate has warranty) A boolean value that shows if the user wants to buy the warranty or not.
Response example:
Now, you can redirect the user to the payment_url
to complete the payment.
Waiting for the payment confirmation via webhook
After the user completes the payment, the Fourvenues API will send a webhook to your backend with the payment confirmation. You can check the Listening to Webhooks recipe to learn how to handle the webhook events.