✅ Custom Check-in System
Learn how to mark tickets as checked in using the Integrations API.
In this recipe, you will learn how to mark tickets as checked in using the Integrations API. This is useful when you have a custom system as a POS or custom check-in system and you want to mark the tickets as checked in in Fourvenues.
We will go through the following steps:
- Retriving events information.
- Retriving tickets of an event every 5 minutes.
- Falling back if not found.
- Mark the ticket as checked in when the ticket is found.
Retriving events information
To start, you need to retrieve the events information. You can use the events endpoints to retrieve the events information.
Now, with that information show the events to the user and ask for the event to check-in.
Retriving tickets of an event every 5 minutes
In order to make the check-in process more efficient, you can retrieve the tickets of an event every 5 minutes and save it in your own database. This way, the check-in process will be faster and you will not need to make a request to the Fourvenues API every time you want to check-in a ticket.
You can use the tickets endpoint to retrieve the tickets of an event.
Now, you can recall this endpoint every 5 minuts passing the start_date
as the last created_at
of the last ticket retrieved.
Falling back if not found
It may be that during the check-in process, the ticket is not found in your database due that has been sold after the last request. In this case, you can make a request to the tickets endpoint to retrieve the ticket information.
Mark the ticket as checked in when the ticket is found
Finally, when you have the ticket information, you can send a request to the checkin endpoint to mark the ticket as checked in.
If the request is successful, the ticket will be marked as checked in in the Fourvenues system.
If the request is not successful, it means that the ticket has already been checked in and the customer will not be able to enter the event again.