Samsung Members | My Account | Samsung United Kingdom (2024)

My products

My account | Sign out

Samsung Members | My Account | Samsung United Kingdom (1)
my account

Keep us in the loop. Edit and manage your details so we can help you make the most of Samsung Members.

Account details

Name & last name

-

Email

-

Date of birth

-

Edit account

Can we contact you?

No, I understand this means I will not receive any bespoke offers or alerts

Add products

Register more products to supercharge support and get even more rewards.

Register product

Explore Rewards

Find out what incredible offers and rewards are waiting for you.

Discover rewards

Delete your account

We’d be so sad to see you go. If you delete your account, you’ll also lose all of your Samsung account information and access to any exclusive rewards.

Delete your account

Samsung Members | My Account | Samsung United Kingdom (2)

Join with a few taps in the app

It’s never been easier to become a Member in our app. Download it now and register with a tap or touch to get easy access at your fingertips.

Please note, products registered on this website may not be visible in the Samsung Members app.

Samsung Members | My Account | Samsung United Kingdom (3)

\n

").concat(product.DisplayName, "

\n

\n ").concat(product.ModelCode, "\n

\n ").concat(registeredProductCta, "\n

"); }); this.productsContainer.html(productsDivs); this.deleteProduct(); MEMBERS_WEB.components.slideUpCategoriesAndProducts.init(); } }, deleteProduct: function deleteProduct() { var deleteProductCta = $('.deleteProductCta'); deleteProductCta.click(function (e) { e.preventDefault(); var id = $(this).data('id'); MEMBERS_WEB.common.apiPost('/api/device/delete?ItemRegistrationId=' + id, JSON.stringify([]), function (data) { MEMBERS_WEB.products.getRegisteredProducts(); }); }); }, searchProducts: function searchProducts() { var timer; var encodedValue; if (MEMBERS_WEB.user.isUserLoggedIn) { var searchInput = $('.search-input'); searchInput.on('keyup ', function (e) { if (e.target.value.length > 0) { // ***** IN LIVE ***** if (e.keyCode !== 38 && e.keyCode !== 40 && e.keyCode !== 13 && e.keyCode !== undefined) { clearTimeout(timer); timer = setTimeout(function () { console.log(e.target.value.length); if (e.target.value.length >= 2) { encodedValue = encodeURIComponent(e.target.value); var apiPath = '/api/profile/products' + "?language=".concat(e.target.value, "&locale=").concat(MEMBERS_WEB.locale); if ('/api/profile/products' === '/api/profile/productmembers') { apiPath = '/api/profile/products' + "?searchterm=".concat(encodedValue, "&locale=").concat(MEMBERS_WEB.locale); } // if ('SEUK' === "SEBN") { // apiPath = '/api/profile/products' + `?searchterm=${encodedValue}&locale=${MEMBERS_WEB.locale}` // } MEMBERS_WEB.common.apiGet(apiPath, function (response) { MEMBERS_WEB.products.populateSearchResults(response, e.target.value); }); } }, 500); } else { MEMBERS_WEB.products.scrollResults(e); } // ***** END LIVE ***** // ***** IN LOCALHOST ***** // if ( // e.keyCode !== 38 && // e.keyCode !== 40 && // e.keyCode !== 13 && // e.keyCode !== undefined // ) { // const searchResults = $('.search-results'); // $(searchResults).addClass('active'); // MEMBERS_WEB.products.populateSearchResults(MEMBERS_WEB.fakeProducts, e.target.value); // } else { // console.log('scroll'); // MEMBERS_WEB.products.scrollResults(e); // } // ***** END IN LOCALHOST ***** } else { $('.search-results').html(''); $('.search-results').removeClass('active'); } }); } $('body').click(function (e) { if ($(e.target).closest('.search-result').length === 0 && $(e.target).closest('.search-input').length === 0) { $('.search-results').html('').removeClass('active'); MEMBERS_WEB.products.scrollIndex = -1; } }); }, populateSearchResults: function populateSearchResults(apiResponse, inputValue) { var searchResults = $('.search-results'); $(searchResults).addClass('active'); var html = apiResponse.filter(function (product) { var regex = new RegExp(inputValue, 'gi'); return product.MarketingName.match(regex); }).map(function (model) { var regex = new RegExp(inputValue, 'gi'); var modelName = model.MarketingName.replace(regex, "".concat(inputValue, "")); var modelSku = model.MarketingName.replace(regex, "".concat(inputValue, "")); if ('/api/profile/products' === "/api/profile/productmembers") { // SEBN return "\n

  • \n ").concat(modelName, "\n
  • \n "); } else { return "\n

  • \n ").concat(modelName, "\n
  • \n "); } // if ('SEUK' === "SEBN") { // return ` //

  • // ${modelName} //
  • // `; // } else if ('SEUK' === "SENA") { // return ` //

  • // ${modelName} //
  • // `; // } else if ('SEUK' === "SEPOL") { // return ` //

  • // ${modelName} //
  • // `; // } }).join(''); $(searchResults).html(html); $('.search-result').on('click', function () { // searchProductsAPI = siteEnv variable, inserted and defined through gulp if ('/api/profile/products' === "/api/profile/products") { $('.model-details').data('code', $(this).data('model')); $('.model-details').data('image', $(this).data('image')); $('.model-details').data('name', $(this).data('name')); } else { $('.model-details').data('image', $(this).data('image')); $('.model-details').data('name', $(this).data('name')); $('.model-details').data('model', $(this).data('model')); $('.model-details').data('productid', $(this).data('productid')); $('.model-details').data('shortcode', $(this).data('shortcode')); } // if ('SEUK' === "SEBN") { // // FOR SEBN // $('.model-details').data('image', $(this).data('image')); // $('.model-details').data('name', $(this).data('name')); // $('.model-details').data('model', $(this).data('model')); // $('.model-details').data('productid', $(this).data('productid')); // $('.model-details').data('shortcode', $(this).data('shortcode')); // } else if ('SEUK' === "SENA") { // // FOR SENA // $('.model-details').data('code', $(this).data('model')); // $('.model-details').data('image', $(this).data('image')); // $('.model-details').data('name', $(this).data('name')); // } else if ('SEUK' === "SEPOL") { // // FOR SEPOL // $('.model-details').data('code', $(this).data('model')); // $('.model-details').data('image', $(this).data('image')); // $('.model-details').data('name', $(this).data('name')); // } $('.search-input').val(''); $('.search-results').html('').removeClass('active'); MEMBERS_WEB.products.addProductFromSearchInput(); }); }, scrollResults: function scrollResults(e) { e.preventDefault(); var activeLi; console.log('e.keyCode', e.keyCode); switch (e.keyCode) { case 40: this.scrollIndex++; if (this.scrollIndex >= $('.search-result').length - 1) { this.scrollIndex = $('.search-result').length - 1; } this.setActiveLi(); activeLi = $('.search-result.active'); break; case 38: this.scrollIndex--; if (this.scrollIndex <= -1) { this.scrollIndex = -1; } this.setActiveLi(); activeLi = $('.search-result.active'); break; case 13: this.setActiveLi(); activeLi = $('.search-result.active'); // break if no active item if (!activeLi.length) { break; } $('.model-details').data('image', $(activeLi).data('image')); $('.model-details').data('name', $(activeLi).data('name')); $('.model-details').data('model', $(activeLi).data('model')); $('.model-details').data('productid', $(activeLi).data('productid')); $('.model-details').data('shortcode', $(activeLi).data('shortcode')); $('.search-input').val(''); $('.search-results').html('').removeClass('active'); this.scrollIndex = -1; this.addProductFromSearchInput(); break; default: this.scrollIndex = -1; } var searchResults = $('.search-results'); var activeResult = $('.search-result.active'); if (activeResult.length) { var activeResultTopPos = activeResult.offset().top; var activeResultBottomPos = activeResultTopPos + activeResult.outerHeight(); var searchResultsBottom = searchResults.offset().top + searchResults.outerHeight(); if (activeResultBottomPos > searchResults.offset().top + searchResults.outerHeight()) { $(searchResults).animate({ scrollTop: activeResult.outerHeight() + searchResults.scrollTop() }); } else if (activeResultTopPos < searchResults.offset().top) { $(searchResults).animate({ scrollTop: searchResults.scrollTop() - activeResult.outerHeight() }); } } }, setActiveLi: function setActiveLi() { var index = this.scrollIndex; // ignore if no active index if (index < 0) { return; } var resultsItems = $('.search-result'); resultsItems.removeClass('active'); $(resultsItems[index]).addClass('active'); console.log('index: ', index); console.log('activeLi: ', resultsItems[index]); }, addProductFromSearchInput: function addProductFromSearchInput() { var BuyDate = null; var SerialNumber = null; var RetailerInfo = null; var selectedProduct = $('.selected-product'); var selectedProductImage = $('.selected-product img'); var selectedProductName = $('.selected-product__model-name'); $(selectedProductImage).attr('src', ''); var newImgSrc = $('.model-details').data('image') === null ? '//images.samsung.com/is/image/samsung/assets/uk/members/images/placeholder.jpg?$ORIGIN_JPG$' : $('.model-details').data('image'); var newName = $('.model-details').data('name'); $('.search-input').val(''); $('.search-results').html('').removeClass('active'); $('.search-button').removeClass('faded'); $(selectedProductImage).attr('src', newImgSrc); $(selectedProductName).html(newName); selectedProduct.addClass('active'); $('.img-loader').show(); $(selectedProductImage).load(function () { $('.img-loader').hide(); }); $('html, body').animate({ scrollTop: $('.search-container').offset().top }, 500); $('.search-input').val(''); $('.search-results').html('').removeClass('active'); // only when no link is present $('.imei-link[href="#"]').click(function (e) { e.preventDefault(); console.log; $('.instructions-section').addClass('opened'); $('html, body').animate({ scrollTop: $('.imei-input').offset().top - 50 }, 500); }); $('.search-results').html('').removeClass('active'); // removes selected device $('.remove-device').click(MEMBERS_WEB.products.removeSelectedProduct); $('.complete-registration').click(MEMBERS_WEB.products.completeRegistration); }, removeSelectedProduct: function removeSelectedProduct() { // just removing the active class to prevent progress of registering, // product data will be repopulated after change $('.selected-product').removeClass('active'); // scroll to search box $('html, body').animate({ scrollTop: $('.search-container').offset().top - 200 }, 500); }, completeRegistration: function completeRegistration() { var productID; var modelCode; var shortCode; var serialNumber; var retailerInfo; var formData; var buyDate; // siteAreaCode = siteEnv variable, inserted and defined through gulp if ('/api/profile/addproduct' === '/api/profile/productmemberitemregistration') { // FOR SEBN locales productID = $('.model-details').data('productid'); modelCode = $('.model-details').data('model'); shortCode = $('.model-details').data('shortcode'); serialNumber = $('.imei-input__field').val(); retailerInfo = null; formData = { Locale: MEMBERS_WEB.locale, ProductID: productID, ModelCode: modelCode, ShortModelCode: shortCode, SerialNumber: serialNumber }; } else { productID = $('.model-details').data('code'); buyDate = null; serialNumber = $('.imei-input__field').val(); retailerInfo = null; formData = { ProductID: productID, BuyDate: buyDate, SerialNumber: serialNumber, RetailerInfo: retailerInfo }; } // if ('SEUK' === "SEBN") { // // FOR SEBN locales // productID = $('.model-details').data('productid'); // modelCode = $('.model-details').data('model'); // shortCode = $('.model-details').data('shortcode'); // serialNumber = $('.imei-input__field').val(); // retailerInfo = null; // formData = { // Locale: MEMBERS_WEB.locale, // ProductID: productID, // ModelCode: modelCode, // ShortModelCode: shortCode, // SerialNumber: serialNumber, // }; // // siteAreaCode = siteEnv variable, inserted and defined through gulp // } else if ('SEUK' === "SENA") { // //FOR SENA locales // productID = $('.model-details').data('code'); // buyDate = null; // serialNumber = $('.imei-input__field').val(); // retailerInfo = null; // formData = { // ProductID: productID, // BuyDate: buyDate, // SerialNumber: serialNumber, // RetailerInfo: retailerInfo, // }; // } else if ('SEUK' === "SEPOL") { // //FOR SEPOL locales // productID = $('.model-details').data('code'); // buyDate = null; // serialNumber = $('.imei-input__field').val(); // retailerInfo = null; // formData = { // ProductID: productID, // BuyDate: buyDate, // SerialNumber: serialNumber, // RetailerInfo: retailerInfo, // }; // } console.log('formData', formData); $('.imei-error-msg').removeClass('active'); if ('/api/profile/addproduct' === '/api/profile/productmemberitemregistration') { if (serialNumber.length === 0) { $('.imei-error-msg.errorMessage1').addClass('active'); } else { MEMBERS_WEB.common.apiPost('/api/profile/addproduct', // siteEnvVariable JSON.stringify(formData), function (data) { if (data == 'true') { window.location.href = "/".concat(MEMBERS_WEB.site, "/members/products"); // window.location.href = `/${MEMBERS_WEB.site}/members`; return; } else {} }); } } else { if (serialNumber.length === 0) { $('.imei-error-msg.errorMessage1').addClass('active'); } else if (!(14 <= serialNumber.length && serialNumber.length <= 17)) { $('.imei-error-msg.errorMessage2').addClass('active'); } else { MEMBERS_WEB.common.apiPost('/api/profile/addproduct', // siteEnvVariable JSON.stringify(formData), function (data) { if (data == 'true') { window.location.href = "/".concat(MEMBERS_WEB.site, "/members/products"); // window.location.href = `/${MEMBERS_WEB.site}/members`; return; } else {} }); } } }, scrollToRegister: function scrollToRegister() { $('.scrollToRegister').click(function (e) { e.preventDefault(); $('html, body').animate({ scrollTop: $('.find-device').offset().top - 50 }, 500); }); if (window.location.hash === '#find-device') { setTimeout(function () { $('html, body').animate({ scrollTop: $('#find-device').offset().top }, 1000); }, 500); } }, init: function init() { this.getRegisteredProducts(); this.searchProducts(); this.scrollToRegister(); } }, components: { navigation: { elem: $('.members-nav-wrapper'), toggle: $('.nav-toggle'), setLoginClass: function setLoginClass() { if (MEMBERS_WEB.user.loggedIn) { this.elem.addClass('logged-in'); } else { this.elem.addClass('logged-out'); } }, setStickyNav: function setStickyNav() { var elem = MEMBERS_WEB.components.navigation.elem; var samsungHeader = $('.gnb__bar')[0]; var navHandler = function navHandler(entries) { if (!entries[0].isIntersecting) { $(elem).addClass('sticky'); } else { $(elem).removeClass('sticky'); } }; var navObserver = new IntersectionObserver(navHandler); navObserver.observe(samsungHeader); }, setActiveNav: function setActiveNav() { var pageRegEx = new RegExp(/\/members\/(\w+)\//g); var pageArr = pageRegEx.exec(window.location.pathname); if (pageArr) { $('.members-nav-inner').addClass('has-active'); var currentPage = pageArr[1]; // Check if the nav links contain the current page and add the active class. $('.members-nav-inner a').each(function () { var href = $(this).attr('href'); if (href.indexOf(currentPage) > -1) { $(this).addClass('active'); } }); } else { $('.members-nav-inner a').each(function () { var href = $(this).attr('href'); if (href === "/".concat(MEMBERS_WEB.site, "/members")) { $(this).addClass('active'); } }); } }, toggleMobileMenu: function toggleMobileMenu() { var _this2 = this; this.toggle.on('click', function () { _this2.elem.toggleClass('nav-opened'); }); }, animateThreeSteps: function animateThreeSteps() { var progressBars = Array.prototype.slice.call(document.querySelectorAll('.progress-bar'), 0); var options = { root: null, rootMargin: '0px 0px -10px 0px', threshold: 0 }; var progressHandler = function progressHandler(entries) { entries.forEach(function (entry) { if (!entry.isIntersecting) { return; } else { entry.target.classList.add('visible'); } }); }; var progressObserver = new IntersectionObserver(progressHandler, options); if (progressBars) { progressBars.forEach(function (progressBar) { progressObserver.observe(progressBar); }); } }, init: function init() { this.setLoginClass(); this.setActiveNav(); this.setStickyNav(); this.toggleMobileMenu(); this.animateThreeSteps(); } }, counter: { elem: $('.members-counter'), anim: $('.members-counter .counter-animation'), config: window.localConfig.counter, createCounter: function createCounter() { var counter = new Odometer({ el: this.anim[0], value: 0, format: this.config.format, theme: 'minimal', duration: 3000 }); return counter; }, events: function events(counter) { var counterTitle = $('.counter-title')[0]; var handler = function handler(entries) { if (!entries[0].isIntersecting) { return; } counter.update(MEMBERS_WEB.components.counter.config.number); }; var observer = new IntersectionObserver(handler); observer.observe(counterTitle); }, init: function init() { if (this.config.enabled) { if (this.elem && typeof Odometer === 'function') { var counter = this.createCounter(); this.events(counter); } else { this.elem.hide(); } } } }, homepageVideo: { poster: $('.js-videoPoster'), initializeIframe: function initializeIframe() { this.poster.click(function (e) { e.preventDefault(); var $wrapper = $(this).closest('.js-videoWrapper'); var $iframe = $wrapper.find('.js-videoIframe'); var src = $iframe.data('src'); $wrapper.addClass('videoWrapperActive'); $iframe.attr('src', src); }); }, init: function init() { this.initializeIframe(); } }, homeCarousels: { initialSlider: $('.ignite-item-slider'), initialSliderBottomNav: $('.ignite-thumb-slider'), registeredProductsSlider: $('.ignite-item-slider-registered'), initializeCarousels: function initializeCarousels() { this.initialSlider.on('init', function (event, slick, currentSlide) { var nrCurrentSlide = slick.currentSlide + 1, // din cauza ca e array si incepe de la 0 totalSlidesPerPage = nrCurrentSlide + 3; // daca ai 5 thumb-uri pe pagina pui + 4 $('.controls').html(nrCurrentSlide + ' - ' + totalSlidesPerPage + ' of ' + slick.slideCount); }); this.initialSliderBottomNav.slick({ slidesToShow: 4, slidesToScroll: 1, asNavFor: '.ignite-item-slider', dots: false, arrows: false, focusOnSelect: true, infinite: false }); this.initialSlider.slick({ slidesToShow: 1, slidesToScroll: 1, centerMode: true, centerPadding: '20%', arrows: false, asNavFor: '.ignite-thumb-slider', infinite: true, autoplay: true, autoplaySpeed: 1500, focusOnSelect: true }); this.registeredProductsSlider.slick({ lazyLoad: 'ondemand', slidesToShow: 3, infinite: true, centerMode: true, centerPadding: '0px', slidesToScroll: 1, dots: false, focusOnSelect: true, prevArrow: false, nextArrow: false, speed: 1000, mobileFirst: true, variableWidth: true, responsive: [{ breakpoint: 769, settings: 'unslick' }] }); var current = 0; // current slider dupa refresh $('.ignite-thumb-slider .slick-slide:not(.slick-cloned)').eq(current).addClass('slick-current'); $('.ignite-item-slider').on('afterChange', function (event, slick, currentSlide, nextSlide) { current = currentSlide; $('.ignite-thumb-slider .slick-slide').removeClass('slick-current'); $('.ignite-thumb-slider .slick-slide:not(.slick-cloned)').eq(current).addClass('slick-current'); var nrCurrentSlide = slick.currentSlide + 1; // din cauza ca e array si incepe de la 0 var totalSlidesPerPage = nrCurrentSlide + 3; // daca ai 5 thumb-uri pe pagina pui + 4 }); }, init: function init() { this.initializeCarousels(); } }, homeBanner: { init: function init() { setTimeout(function () { if ($('.phase-two:visible').length > 0) { $('.members-banner').hide(); } else { $('.members-banner').show(); } }, 1000); } }, prependToAemComponents: { init: function init() { //prepend article headers to appropriate component article sections $('.articleheader').each(function () { var current = $(this).attr('data-articlehead'); $(this).prependTo('#' + current); }); // members banner to move AFTER all components on the page if ($('.cheil-static').find('.members-banner').length) { var articles = $('.articleheader'); if (articles.length) { var lastSection = $(articles[articles.length - 1]).parents('.cm-g-columns.section'); } $('.members-banner').insertAfter(lastSection); } } }, fadeInComponents: { init: function init() { var contentToFade = Array.prototype.slice.call(document.querySelectorAll('.toFade'), 0); var fadeInObserver = new IntersectionObserver(function (entries, observer) { entries.forEach(function (entry) { if (!entry.isIntersecting) { return; } entry.target.classList.add('fadeIn'); observer.unobserve(entry.target); }); }); contentToFade.forEach(function (content) { fadeInObserver.observe(content); }); } }, slideUpCategoriesAndProducts: { init: function init() { if (window.location.pathname === "/".concat(MEMBERS_WEB.site, "/support/") || window.location.pathname === "/".concat(MEMBERS_WEB.site, "/products/")) { var containerToSlide = $('.toSlide')[0]; var slideHandler = function slideHandler(entries) { if (!entries[0].isIntersecting) { return; } entries[0].target.classList.add('slideUp'); }; var observer = new IntersectionObserver(slideHandler); observer.observe(containerToSlide); } } }, zoomInComponents: { init: function init() { var contentToZoom = Array.prototype.slice.call(document.querySelectorAll('.toZoom'), 0); var zoomObserver = new IntersectionObserver(function (entries) { entries.forEach(function (entry) { if (!entry.isIntersecting) { return; } entry.target.classList.add('zoom'); }); }); contentToZoom.forEach(function (content) { zoomObserver.observe(content); }); } }, scrollIgniteCards: { init: function init() { $('.ignite__card').click(function () { var target = $(this).data('sendto'); $('html, body').animate({ scrollTop: $("#".concat(target)).offset().top }, 500); }); } }, addOpenInNewTabIcon: { init: function init() { if ($('.kv__content.registered-only .round-button').hasClass('s-ico-new-window')) { $('.kv__content.registered-only .round-button').css('padding-right', '3rem'); } } }, init: function init() { this.navigation.init(); this.counter.init(); this.prependToAemComponents.init(); this.homeCarousels.init(); this.homepageVideo.init(); this.homeBanner.init(); this.fadeInComponents.init(); this.zoomInComponents.init(); this.scrollIgniteCards.init(); this.slideUpCategoriesAndProducts.init(); this.addOpenInNewTabIcon.init(); } }, support: { changeVideoSource: function changeVideoSource() { if (window.location.pathname === "/".concat(MEMBERS_WEB.site, "/members/support/")) { if ($('.sam-video')) { var samVideo = $('.sam-video'); $(window).on('load resize', function () { if ($(window).width() > 768) { samVideo.get(0).pause(); samVideo.html("

    "); samVideo.get(0).load(); samVideo.get(0).play(); } else { samVideo.get(0).pause(); samVideo.html('

    '); samVideo.get(0).load(); samVideo.get(0).play(); } }); } } }, toggleSupportSections: function toggleSupportSections() { $('.open-section').click(function () { var sectionClass = $(this).data('open'); $(".".concat(sectionClass)).toggle(); if ($(".".concat(sectionClass)).is(':visible')) { $(this).html(supportButtonSeeLess).removeClass('section-closed').addClass('section-opened'); } else { $(this).html(supportButtonSeeMore).removeClass('section-opened').addClass('section-closed'); } }); }, init: function init() { this.changeVideoSource(); this.toggleSupportSections(); } }, init: function init() { this.common.redirect(); this.common.setLocale(); this.common.detectIE(); this.user.init(); this.products.init(); this.components.init(); this.support.init(); }};if ($('.code-component').length) { if (window.addEventListener) { window.addEventListener('DOMContentLoaded', MEMBERS_WEB.init(), false); } else if (window.attachEvent) { window.attachEvent('onload', function () { MEMBERS_WEB.init(); }); }}});
    Samsung Members | My Account | Samsung United Kingdom (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Dr. Pierre Goyette

    Last Updated:

    Views: 5962

    Rating: 5 / 5 (70 voted)

    Reviews: 85% of readers found this page helpful

    Author information

    Name: Dr. Pierre Goyette

    Birthday: 1998-01-29

    Address: Apt. 611 3357 Yong Plain, West Audra, IL 70053

    Phone: +5819954278378

    Job: Construction Director

    Hobby: Embroidery, Creative writing, Shopping, Driving, Stand-up comedy, Coffee roasting, Scrapbooking

    Introduction: My name is Dr. Pierre Goyette, I am a enchanting, powerful, jolly, rich, graceful, colorful, zany person who loves writing and wants to share my knowledge and understanding with you.