This site uses cookies to personalise your experience, analyse site traffic and keep track of items stored in your shopping basket. By Clicking ACCEPT or continuing to browse the site you are agreeing to our use of cookies.
See our Privacy Policy here.|Do not Sell or Share My Personal Information
';
$(dialog).insertBefore(self.$el.find('.email-signup-dialog-success'));
var otp = $('.signUp-dialog-otp');
var error = otp.find('.otp-error');
var alert = otp.find('.otp-alert');
var submit = otp.find('.otp-button');
var otpBox = otp.find('.otp-input');
$(document).on('click', '.otp-resend', function(e) {
e.stopPropagation();
$.ajax({
type: 'POST',
url: window.location.href.indexOf('devus') > -1 ? 'http://105.1.11.162:10401/us/DailySweepsEntries.do' : 'https://pages.samsung.com/us/DailySweepsEntries.do',
contentType: 'application/x-www-form-urlencoded',
data: self.requestURL + '&otp=resend',
success: function(data) {
otpBox.val("");
error.hide();
alert.show();
submit.attr('disabled', true);
}
});
})
$(document).on('click', '.otp-reset', function() {
otpBox.val("");
error.hide();
alert.show();
submit.attr('disabled', true);
otp.hide();
signinForm.show();
})
otpBox.keyup(function() {
if ($(this).val().length > 0) submit.attr('disabled', false);
else submit.attr('disabled', true);
});
otp.submit(function(e) {
e.preventDefault();
var otp_num = otpBox.val();
$.ajax({
type: 'POST',
url: window.location.href.indexOf('devus') > -1 ? 'http://105.1.11.162:10401/us/DailySweepsEntries.do' : 'https://pages.samsung.com/us/DailySweepsEntries.do',
contentType: 'application/x-www-form-urlencoded',
data: self.requestURL + '&otp=' + otp_num,
success: function(data) {
if (data === 'true' || data && data.success || data && data.error === 'duplicate') {
error.hide();
alert.hide();
self.goToSuccessView(true);
} else {
if (data === 'expired') error.html('Your code has expired. Click here to request a new one.');
else error.html('The code entered is incorrect. Try entering the code again, or click here to request a new one.')
error.show();
alert.hide();
}
}
});
})
}
self.triggerLoginSubmit = function(ss_fn, ss_ln, ss_email, ss_zip, encr) {
if (ss_fn && ss_ln && ss_email) {
var encrStr = encr? '&encr=Y': '';
var ss_zip = ss_zip? ss_zip: '';
var url = '';
url = url + 'campaignid=' + self.campaign_id;
url = url + '&firstname=' + ss_fn + '&lastname=' + ss_ln + '&zipcode=' + ss_zip + '&email=' + ss_email + encrStr;
url = url + '&cb_optin1=Y';
url = url + '&cb_optin2=0';
url = url + '&cb_optin3=0';
if(window.firebaseId) {
url = url + '&cothers20=' + window.firebaseId;
}
if (window.appUUID) {
url += '&cothers8=' + window.appUUID;
}
url += '&cothers18=' + (window.visitor ? window.visitor.getMarketingCloudVisitorID() : $.cookies.get('AMP_VID')? $.cookies.get('AMP_VID'): '');
var retailer = self.category_data;
url = url + '&retailer=' + retailer.replace(/\&/, 'AND');
url = url + '&source=' + self.getSource();
// store url for otp
self.requestURL = url;
self.email = '';
$.ajax({
type: 'POST',
url: window.location.href.indexOf('devus') > -1 ? 'http://105.1.11.162:10401/us/DailySweepsEntries.do' : 'https://pages.samsung.com/us/DailySweepsEntries.do',
contentType: 'application/x-www-form-urlencoded',
data: url,
success: function(data) {
self.$el.show();
if (data === 'enter-otp') self.insertOTPDialog();
else self.goToSuccessView();
self.$el.find('.email-signup-dialog-container ' + '.email-signup-dialog-modal').addClass('.email-signup-dialog-narrow-view');
}
});
}
}
self.triggerDialog = function() {
self.submitted = false;
self.$el.find('.email-signup-category-input-field[name="phone"]');
var isLoggedIn = readCookie('xsdcxyn');
if (isLoggedIn) {
self.$el.find('.email-signup-dialog-form').show();
self.$el.find('.email-signup-dialog-success').hide();
self.$el.find('.email-signup-dialog-container ' + '.email-signup-dialog-modal').removeClass('.email-signup-dialog-narrow-view');
self.$el.show();
initForm();
var ss_fn = readCookie('firstName');
var ss_ln = readCookie('lastName');
var ss_zip = readCookie('prof_zip');
self.$el.find('.email-signup-category-input-field').each(function() {
var _self = $(this);
var name = _self.attr('name');
var value;
switch (name) {
case 'firstname':
if (!value) value = ss_fn;
case 'lastname':
if (!value) value = ss_ln;
case 'zipcode':
if (!value) value = ss_zip;
if (value) _self.val(value);
break;
default: break;
}
});
} else if (typeof window.EcommAndroidClient !== 'undefined') {
if(window.EcommAndroidClient.isSignedIn()) {
window.setUserDetails = function(dataJSON) {
var data = JSON.parse(dataJSON);
var ss_fn = data.givenName.split(' ')[0];
var ss_email = data.email;
var ss_ln = data.givenName.split(' ')[1];
window.appUUID = data.uuid;
self.triggerLoginSubmit(ss_fn, ss_ln, ss_email);
}
window.EcommAndroidClient.getUserDetails('setUserDetails');
} else {
self.$el.find('.email-signup-dialog-form').show();
self.$el.find('.email-signup-dialog-success').hide();
self.$el.find('.email-signup-dialog-container ' + '.email-signup-dialog-modal').removeClass('.email-signup-dialog-narrow-view');
self.$el.show();
initForm();
}
} else {
self.$el.find('.email-signup-dialog-form').show();
self.$el.find('.email-signup-dialog-success').hide();
self.$el.find('.email-signup-dialog-container ' + '.email-signup-dialog-modal').removeClass('.email-signup-dialog-narrow-view');
self.$el.show();
initForm();
}
}
self.goToSuccessView = function(isOTP) {
if (isOTP) $('.feature-benefit-dialog-success h3').text('Thank you for verifying your email address');
$('.signUp-dialog-otp').remove();
self.$el.find('.email-signup-dialog-form').hide();
self.$el.find('.email-signup-dialog-success').show();
self.submitted = true;
$(document).trigger('SIGNUP_FORM_SUCCESS');
if (window.utag && utag.link) {
utag.link({
link_cat: 'thank_you_overlay_form',
link_id: 'thank_you_overlay_form_close' ,
link_meta:'link_name: close',
link_position: self.$el.find('.email-signup-dialog-modal-close').attr('data-headline') + '>sign up>thank you overlay'
});
}
};
function initForm() {
self.$el.find('.email-signup-dialog-errormessage').remove();
self.$el.find('.disclaimer-error').remove();
self.$el.find('.email-signup-category-input-checkbox').prop('checked', false);
_.each(self.$el.find('.email-signup-category-input-field'), function(el) {
$(el).val('');
if (el.attributes.isoptional.value == 'true') {
el.removeAttribute('required');
if (el.attributes.placeholder.value.indexOf('(Optional)') == -1) {
el.attributes.placeholder.value += ' (Optional)';
}
}
});
}
function validateCheckbox(el) {
el.parent().next().remove();
if (!el.is(':checked')) {
if (self.isEN) {
el.parent().after('Please accept the agreement to submit.');
} else {
el.parent().after('Por favor, acepta el acuerdo para poder registrarte.');
}
return Promise.resolve(false);
} else {
return Promise.resolve(true);
}
}
function validateInput(el) {
$(el).next().remove();
var name = $(el).attr('placeholder');
var type = $(el).attr('validatetype');
var data = $(el).val();
var required = $(el).attr('required');
if (!data) {
if (required) {
if (self.isEN) {
$(el).after('' + name[0].toUpperCase() + name.toLowerCase().slice(1) + ' is required ');
} else {
$(el).after('' + name[0].toUpperCase() + name.toLowerCase().slice(1) + ' requerido');
}
return Promise.resolve(false);
} else {
return Promise.resolve(true);
}
} else {
if (type == 'text') {
var regexp = /^[a-zA-Z]{1,20}(-[a-zA-Z]{1,20})?$/;
if (!regexp.test(data.trim())) {
if (self.isEN) {
$(el).after('Please enter proper ' + name + ' ');
} else {
$(el).after('Se requiere ingresar su ' + name + ' correcto ');
}
return Promise.resolve(false);
} else {
return Promise.resolve(true);
}
}
if (type == 'email') {
var regexp = /[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/;
if (!regexp.test(data.trim())) {
if (self.isEN) {
$(el).after('Invalid email address ');
} else {
$(el).after('Correo electrónico inválido ');
}
return Promise.resolve(false);
} else {
return Promise.resolve(true);
}
}
if(type == 'phone') {
var regexp = /^\d{10}$/;
if (!regexp.test(data.trim())) {
if (self.isEN) {
$(el).after('Invalid phone number ');
} else {
$(el).after('Numero inválido ');
}
return Promise.resolve(false);
} else {
return Promise.resolve(true);
}
}
if (type == 'zipCode') {
return new Promise(function (resolve) {
$.ajax({
type: "GET",
url: 'https://secure.shippingapis.com/ShippingAPI.dll?API=CityStateLookup&XML=' + data.trim() + '',
success: function(res) {
if ($(res).find('Zip5').length > 0 && $(res).find('Error').length === 0) {
resolve(true);
} else {
if (self.isEN) {
$(el).after('Please enter 5-digit valid Zipcode ');
} else {
$(el).after('Se requiere ingresar un código postal válido de 5 dígitos ');
}
resolve(false);
}
}
}).fail(function() {
var regexp = /^\d{5}(?:[-\s]\d{4})?$/;
if (!regexp.test(data.trim())) {
if (self.isEN) {
$(el).after('Please enter 5-digit valid Zipcode ');
} else {
$(el).after('Se requiere ingresar un código postal válido de 5 dígitos ');
}
resolve(false);
} else {
resolve(true);
}
});
});
}
}
}
function readCookie(name) {
var nameEQ = name + '=';
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return false;
}
}
window.AEMapp = window.AEMapp || {};
window.AEMapp.clientlibs = window.AEMapp.clientlibs || {};
window.AEMapp.clientlibs.EmailSignUp = EmailSignUp;
})();
See how Samsung leads in sustainability with award-winning technology
From appliances given the EPA's Most Efficient distinction for meeting the most rigorous standards of energy-efficiency to the prestigious Corporate Commitment Award that proves Samsung’s dedication to a greener future, we strive to deliver technologies that environmentally conscious consumers can confidently use to save energy and reduce their carbon footprint.
Most Efficient Distinction
The EPA bestows the Most Efficient distinction to products that meet criteria even more stringent than ENERGY STAR certified.
Corporate Commitment Award
Samsung was the only company in nine years to receive this rare award, for our wide-scale commitment to sustainability.
ENERGY STAR certified Samsung refrigerators are 9% more energy efficient than the standard* and 35% more energy efficient than an old refrigerator,† saving you $220 in utilities over product lifetime when replacing an old refrigerator.
Our ranges are ENERGY STAR® Certified, recognized by the EPA for delivering cutting-edge energy efficiency along with the latest technological innovations.
ENERGY STAR certified Samsung washers use 33% less water and 25% less energy than the standard,* saving you $370 in utilities and 2,000 gallons of water over the product lifetime.
ENERGY STAR certified Samsung dishwashers use 25% less energy and save over 8,000 gallons of water compared to washing by hand over the product’s lifetime.
¶Up to $840 for qualifying appliances under the Home Electrification and Appliance Rebate Program. The appliance and income eligibility, as well as rebates amount and other specifics may vary by state. Limited to $14,000 total per eligible entity. See Inflation Reduction Act for details.
∞For qualifying appliances under Home Electrification and Appliance Rebate Program and HOMES Rebate Program. Eligibility (including product and income requirements) and timing vary by state level and to be further clarified by the Department of Energy and states. See Inflation Reduction Act for details.
†Digital Inverter Compressors use around 25-35.5% less energy than ones with single- speed induction motor compressors.
††The Conventional Standard Level is based on an assumed average non-ENERGY STAR model's Dust CADR/W of 1.9.
#Eligible categories are Refrigerators, Wine Coolers, Freezers, Washers, Dryers, Air Dressers, Ranges, Over-the-Range Microwave Ovens, Dishwashers, Wall Ovens, Cooktops, Range Hoods, and Vacuums. Countertop Microwaves, Air Purifiers, Pedestals, and all other accessories (including Bespoke Panels) are not eligible.
Get stock alert
Get alert when this item is back in stock and available to buy, by adding your email to opt into alerts.
Double check the address…just to make sure!
We will email you when inventory is added.
Thank you.
Product Registration
Quick and easy product registration.. Receive up-to-date personalized services and tips.
Serial Number / IMEI
Enter your Serial Number/IMEI
QR Scan
Scan the QR code on your products for easy registration.
* This feature can only be supported on Samsung Home Appliances and non-smart B2C monitors.
Enter your Serial Number/IMEI
Quick and easy product registration.
Please enter the 11 or 15- digit number.
This product is already registered. Make sure you entered the right serial number or IMEI.
Type
Sub Type
Category
Back view
The serial number and model name are printed on the label located on the lower left side of the device’s exterior, near the front. They are also on a second label, inside the refrigerator compartment on a side wall above the top shelf.
Back view
The serial number and model name are printed on the label located on the lower left side of the device’s exterior, near the front. They are also on a second label, inside the refrigerator compartment on a side wall above the top shelf.
Product registration is almost complete!!
You've entered a valid S/N or IMEI. Now select the model of your product.
Suggested Searches
No result. Please try again.
Galaxy Book3 Ultra
SM-G996BZKGEUA
Serial Number: R3CR508WNAH
The device you are currently using does not support the camera function.