Example of creating an event

Ask for permission Create event

LightBulb.albums.createAlbum({
    user: 'whoAreYou',
    name: 'eventName',
    location: 'eventLocation',
    startTime: 'startTime',
    endTime: 'endTime',
    description: 'albumDescriptions',
    privacy: 'OPEN/CLOSED/SECRET'
    },
    function (response) {
        alert('Event created with the following id: ' + response.id);
    }
);