Example of event

Ask for permission Get event

    LightBulb.albums.getAlbums({eventId:'327139013971803'},function(response) {
        var html =  '<ul>';
            html += '<li>Event name: '+ response.name +'</li>';
            html += '<li>Description: '+ response.description +'</li>';
            html += '<li>Start time: '+ response.start_time +'<li>';
            html += '<li>End time: '+ response.end_time +'</li>';
            html += '<li>Location: '+ response.location +'</li>';
            html += '</ul>';
        $('#result').html(html);
    });