Example of creating an album

Ask for permission Create album

LightBulb.albums.createAlbum({
    creator: 'creatorName',
    name: 'yourAlbumName',
    description: 'albumDescriptions',
    },
    function (response) {
        alert('Album created with the following id: ' + response.id);
    }
);