Skip to main content

Integration

You can integrate ticketing into your website using an iframe tag by modifying the appropriate route.

Example :

Example :

iframe
<iframe src="https://demo.betabillet.tech/event/embed/concert-sly-sugar-090626-2114/" width="100%" height="1000px"
frameborder="0"></iframe>
Details

Documentation technique In "../Front/src/router/routes.js", 2 possibilities :

1 - existing route, add alias :

{
path: '/event/:slug',
// si iframe
alias: '/event/embed/:slug',
name: 'Event',
component: () => import(/* webpackChunkName: "Event" */ '../views/Event.vue')
}

2 - new route :

{
path: '/event/embed/:slug',
name: 'Event',
component: () => import(/* webpackChunkName: "Event" */ '../views/Event.vue')
}

Attention :

All urls containing the word "embed" are to be used only in an "iframe".