Turnstile
If your organizer account has the Turnstile feature active, you can use the methods on this page to check in tickets at a turnstile and manage turnstile configurations.
Note
Before calling any of the methods on this page, you must obtain a valid authorization token. To learn about obtaining an authorization token, please read the Authentication section.
Checkin
This method scans and validates a ticket or RFID code at a turnstile entry point. If validation is successful, the ticket will be checked in and access will be granted. The scan will be recorded in the system and count towards any usage limits on the ticket.
HTTP request
POST https://l.oveit.com/api/turnstile/checkin
Request parameters
Parameter | Description |
---|---|
token |
A valid access token, obtained in the Authentication step. |
ticket_code |
(Optional, if the rfid_code parameter is used) Scanned ticket's QR code. |
rfid_code |
(Optional, if the ticket_code parameter is used) The string tag stored on an RFID chip. |
Response example success
{
"ok": true
}
Response example error
{
"ok": false,
"error": "Error message"
}
Checkout
This method handles the checkout process for a ticket or RFID code at a turnstile exit point. If successful, the ticket will be checked out and the exit will be recorded. This allows tracking when attendees leave the venue.
HTTP request
POST https://l.oveit.com/api/turnstile/checkout
Request parameters
Parameter | Description |
---|---|
token |
A valid access token, obtained in the Authentication step. |
ticket_code |
(Optional, if the rfid_code parameter is used) Scanned ticket's QR code. |
rfid_code |
(Optional, if the ticket_code parameter is used) The string tag stored on an RFID chip. |
Response example success
{
"ok": true
}
Response example error
{
"ok": false,
"error": "Error message"
}