Share an Event
This guide provides information on how to share an event using the REST API.
How to Share an Event
To share an event, you must call the GET event/qr-code/{event_id} endpoint. This will generate a shareable ID, as the event ID from the database is not exposed. Use the event_shareable_id from the response and utilize any pre-existing tool to generate a QR code for it.
How to Retrieve the Event Details
To retrieve the event details using the event_shareable_id, first call the GET event/qr-code/validate/{event_shareable_id} endpoint to validate whether the event_shareable_id is still valid. Check the valid field in the response to verify if the event_shareable_id is valid. If it is valid, use the event_id from the response to retrieve the event details by calling the GET event/{event_id} endpoint.