Air Asia Berhad Address, Contact Number (2023)

"; var WinPrint = window.open('', '', 'left=150,top=100,width=1200,height=1200,menubar=1,toolbar=0,scrollbars=yes,status=0'); var x = headstr + divId + footstr; WinPrint.document.write(x); WinPrint.document.close(); WinPrint.focus(); setTimeout(function () { WinPrint.print(); }, 1000); } //End //Review FeedBack function var Rv_Id = 0; var CheckRequest = 0; var Address_Id = 0; function ReviewFeedback(Feedback, Review_Id, GetAddress_Id) { XmlHttp = GetXmlHttpObject(); Address_Id = GetAddress_Id; Rv_Id = Review_Id; if (document.getElementById('hdnFeedbackReview_Id')) { document.getElementById('hdnFeedbackReview_Id').value = Review_Id; } ReadCookie(); if (CheckRequest == 0) { CheckRequest = 1; XmlHttp.onreadystatechange = ReviewFeedbackCallback; var param = 'Action=SaveReviewFeedBack&review_id=' + Review_Id + '&FeedbackString=' + Feedback; var url = "Handler/AddressAjax.ashx?" + param; XmlHttp.open('GET', url, true); XmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); XmlHttp.send(''); } } function ReviewFeedbackCallback() { if (XmlHttp.readyState == 4 || XmlHttp.readyState == "complete") { var txt = XmlHttp.responseText; if (txt == '-1') { document.getElementById('activeMessage_' + Rv_Id).innerHTML = 'You have already voted.'; document.getElementById('activeMessage_' + Rv_Id).style.display = "block"; setTimeout(function () { document.getElementById('activeMessage_' + Rv_Id).style.display = "none"; CheckRequest = 0; }, 1000); } else if (txt == '-2') { document.getElementById('activeMessage_' + Rv_Id).innerHTML = 'You just recommended this comment!'; document.getElementById('activeMessage_' + Rv_Id).style.display = "block"; setTimeout(function () { document.getElementById('activeMessage_' + Rv_Id).style.display = "none"; CheckRequest = 0; }, 500 ); } else { var mySplitResult = txt.split(","); var FeedbackString = mySplitResult[0]; var TotalCount = mySplitResult[1]; setTimeout(function () { if (document.getElementById('Span' + FeedbackString + Rv_Id)) { CheckRequest = 0; document.getElementById('Span' + FeedbackString + Rv_Id).innerHTML = FeedbackString + "(" + TotalCount + ")"; document.getElementById('Span' + FeedbackString + Rv_Id).style.color = "green"; if (FeedbackString == "Spam") { OpenInNewTab('https://address001.com/StaticPages/Contact_Us.aspx?Nwid=' + Address_Id + '&RID=' + Rv_Id + ''); } } }, 500); } } } //End //GetIFM(); function SetCounter(withbar, idfrom) { var gCurrentSize; var le; var txt = document.getElementById('txtReviewPost').value.length; var x = 1000 - txt; if (x < 0) { if (idfrom) { len = idfrom.value.length; idfrom.value = idfrom.value.substring(0, len + x); } x = 0; le = 1000; alert('Only 1000 characters are allowed '); } if (withbar && gCurrentSize != le) { gCurrentSize = le; } document.getElementById('txt_Counter').value = txt; return true; } var GetRvVal; function ReviewDis(title) { if (GetRvVal == undefined) { GetRvVal = '0'; document.getElementById('AbsoluteRvDv').style.display = "block"; var StrBnd = " Note :

    "; StrBnd += '
  • Please write what you know about ' + title + '
  • '; StrBnd += '
  • Please use English language in commenting, No language, Other than English is accepted.
  • '; StrBnd += '
  • Short form like hi, hay, plz, pls etc. cannot be accepted.
  • '; StrBnd += '
  • Spelling mistakes cannot be accepted, Please do not share your personal problems here.
  • '; StrBnd += '
  • Please do not paste here any copied content.
  • '; StrBnd += '

'; StrBnd += "Ok, I Understand" document.getElementById('AbsoluteRvDv').innerHTML = StrBnd; } } function CloseRvVal() { GetTitlVal = '0'; document.getElementById('AbsoluteRvDv').style.display = "none"; } var XmlHttp; function GetXmlHttpObject() { return (window.XMLHttpRequest) ? (new XMLHttpRequest()) : (new ActiveXObject("Microsoft.XMLHTTP")); } function checkMaxLength(textBox, e, length) { var mLen = textBox["MaxLength"]; if (null == mLen) mLen = length; var maxLength = parseInt(mLen); if (!checkSpecialKeys(e)) { if (textBox.value.length > maxLength - 1) { if (window.event)//IE { e.returnValue = false; return false; } else//Firefox e.preventDefault(); } } } function checkSpecialKeys(e) { if (e.keyCode != 8 && e.keyCode != 46 && e.keyCode != 35 && e.keyCode != 36 && e.keyCode != 37 && e.keyCode != 38 && e.keyCode != 39 && e.keyCode != 40) return false; else return true; } /* Used for FaceBook Iframe */ FBData(); function FBData() { if (document.getElementById("FB") != '') { var shareUrl = encodeURIComponent("https://www.facebook.com/address001.com"); document.getElementById("FB").innerHTML = "" } // document.getElementById("twitterSpn").innerHTML = 'Follow @TheAddress007'; !function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (!d.getElementById(id)) { js = d.createElement(s); js.id = id; js.src = "//platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs); } } (document, "script", "twitter-wjs"); } /*End*/ function handleKeyPress(e) { var key = e.keyCode || e.which; if (key == 13) { document.getElementById('IncorrectNo').click(); } } function setCookie(cookieName, cookieValue, nDays) { var today = new Date(); var expire = new Date(); if (nDays == null || nDays == 0) nDays = 1; expire.setTime(today.getTime() + 3600000 * 24 * nDays); document.cookie = cookieName + "=" + escape(cookieValue) + ";expires=" + expire.toGMTString(); } function getCookie(c_name) { var c_value = document.cookie; var c_start = c_value.indexOf(" " + c_name + "="); if (c_start == -1) { c_start = c_value.indexOf(c_name + "="); } if (c_start == -1) { c_value = null; } else { c_start = c_value.indexOf("=", c_start) + 1; var c_end = c_value.indexOf(";", c_start); if (c_end == -1) { c_end = c_value.length; } c_value = unescape(c_value.substring(c_start, c_end)); } return c_value; } function del_cookie(name) { document.cookie = name + '=; expires=Thu, 01 Jan 1970 00:00:01 GMT;'; } function Confirm(sender) { return confirm("Are you sure you want to deleter this entry ?"); } function addBookmark(name) { var url = document.URL; try { if (window.sidebar && window.sidebar.addPanel) { window.sidebar.addPanel(name, url, ''); //obsolete from FF 23. } else if (window.sidebar) { window.sidebar.addPanel(name, url, ''); //obsolete from FF 23. } else if (window.opera && window.print) { var e = document.createElement('a'); e.setAttribute('href', url); e.setAttribute('title', name); e.setAttribute('rel', 'sidebar'); e.click(); } else if (window.external) { window.external.AddFavorite(url, name); } else alert("To Remember this page, please Press Ctrl+D."); } catch (e) { alert("To Remember this page, please Press Ctrl+D."); } } function fbShareClick() { u = location.href; t = document.title; window.open('https://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t), 'sharer', 'toolbar=0,status=0,width=626,height=436'); return false; } function UserRvNameAuto(obj) { var Valu = obj.value; var a = Valu.split(/\s+/); for (i = 0; i < a.length; i++) { a[i] = a[i].charAt(0).toUpperCase() + a[i].slice(1).toLowerCase(); } obj.value = a.join(' '); } function ReplyBoxDp(GetBxId, Address_id, Name) { var elements = document.getElementsByName('NeBxReply') for (var i = 0; i < elements.length; i++) { elements[i].innerHTML = ""; } document.getElementById("Rating_" + GetBxId).style.display = "none"; document.getElementById("div_msg").style.display = "none"; document.getElementById("hdnName").value = Name; if (document.getElementById("HdnReview_Id").value != '') { document.getElementById("NeBxReply_" + document.getElementById("HdnReview_Id").value).style.display = "none"; document.getElementById("Span_" + document.getElementById("HdnReview_Id").value).style.display = "block"; } document.getElementById("HdnReview_Id").value = GetBxId; var BindDta = "

"; BindDta += "

"; BindDta += "

Leave a Reply to : " + Name + "

"; BindDta += "

"; BindDta += "

"; BindDta += "

Reply :

" BindDta += "

"; BindDta += "

"; BindDta += "

Your Name :

"; BindDta += "

"; BindDta += "

(Video) The World's Cheapest Long-Haul Flatbed On Air Asia

"; BindDta += "

"; BindDta += "

Gender :

"; BindDta += "

(Video) air asia event x santan #fyp #airasia #malaysia -#shorts

"; BindDta += "

"; BindDta += "

"; BindDta += "

(Video) MGT657 Company Review and Strategy Plan (Air Asia Berhad)

(Video) 10 reasons AirAsia RedQ is one of the coolest offices in Malaysia

"; BindDta += "

"; document.getElementById('NeBxReply_' + GetBxId).innerHTML = BindDta; window.setTimeout(function () { document.getElementById('CommentTxt').focus(); }, 0); document.getElementById("NeBxReply_" + GetBxId).style.display = "block"; document.getElementById('Span_' + GetBxId).style.display = "none"; } function HideReplyDv(ReviewId) { document.getElementById("NeBxReply_" + ReviewId).style.display = "none"; document.getElementById('Span_' + ReviewId).style.display = "block"; document.getElementById("Rating_" + ReviewId).style.display = "block"; } function AddReply(Address_id, Review_Id) { XmlHttp = GetXmlHttpObject(); XmlHttp.onreadystatechange = SubmitReplyCallback; if (document.getElementById("CommentTxt")) { document.getElementById("Hdn007_Id").value = Address_id; var Comment = document.getElementById("CommentTxt").value.replace('>', '>').replace('<', '>').replace('', ' '); // var Comment = document.getElementById("CommentTxt").value.replace(/\s{2,}/g, ' ').replace('>', '>').replace('<', '>').replace('', ' '); var Name = document.getElementById("ReplyPersonName").value.replace(/\s{2,}/g, ' ').replace('>', '>').replace('<', '>').replace('', ' '); var EmailId = document.getElementById("ReplyEmailId").value.replace(/\s{2,}/g, ' ').replace('>', '>').replace('<', '>').replace('', ' '); var iChars = "<"; var iChars2 = ">"; if (Comment.trim() == '') { document.getElementById("msgJs").innerHTML = "Please enter your reply."; document.getElementById("msgJs").style.display = 'block'; } else if (Name.trim() == '') { document.getElementById("msgJs").innerHTML = "Please enter name."; document.getElementById("msgJs").style.display = 'block'; } else if (Comment.trim().length <= 20) { document.getElementById("msgJs").innerHTML = "Short length reply can not be posted."; document.getElementById("msgJs").style.display = 'block'; } else if (unescape(Comment).indexOf(iChars) != -1 || unescape(Comment).indexOf(iChars2) != -1) { document.getElementById("msgJs").innerHTML = 'Please remove the HTML scripting tags from reply.'; document.getElementById("msgJs").style.display = 'block'; return false; } else if (unescape(Name).indexOf(iChars) != -1 || unescape(Name).indexOf(iChars2) != -1) { document.getElementById("msgJs").innerHTML = 'Please remove the HTML scripting tags from name.'; document.getElementById("msgJs").style.display = 'block'; return false; } else if (document.getElementById("rbReply_Male").checked == false && document.getElementById("rbReply_Female").checked == false) { document.getElementById("msgJs").innerHTML = "Please select gender."; document.getElementById("msgJs").style.display = 'block'; } else if (Comment.length > 999) { document.getElementById("msgJs").innerHTML = "Only 1000 characters are allowed."; document.getElementById("msgJs").style.display = 'block'; } else if (/[^A-Za-z0-9 .]/.test(Name)) { document.getElementById("msgJs").innerHTML = 'please remove special characters from name.'; document.getElementById("msgJs").style.display = 'block'; } else if (validateEmail(EmailId.trim()) == false && EmailId.trim() != '') { document.getElementById("msgJs").innerHTML = "Please enter valid email id."; document.getElementById("msgJs").style.display = 'block'; } else { var NewName; if (document.getElementById("rbReply_Male").checked == true) { NewName = "Mr. " + Name; } else { NewName = "Ms. " + Name; } document.getElementById("msgJs").innerHTML = ""; document.getElementById("msgJs").style.display = 'none'; var param = 'Action=SaveReply&comment=' + escape(Comment) + '&Name=' + escape(NewName) + '&EmailId=' + escape(EmailId) + '&007_id=' + Address_id + '&review_id=' + Review_Id; var url = "Handler/AddressAjax.ashx?" + param; XmlHttp.open('GET', url, true); XmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); XmlHttp.send(''); } } } function SubmitReplyCallback() { if (XmlHttp.readyState == 4 || XmlHttp.readyState == "complete") { var txt = XmlHttp.responseText; if (txt == '0') { document.getElementById('msgJs').innerHTML = "Your problem already posted."; document.getElementById('msgJs').style.display = "block"; } else { document.getElementById('spnMsgSucess').innerHTML = "Your reply to this review has been sent for moderation. "; document.getElementById('MsgSucess').style.display = "block"; document.getElementById('othrmsg').style.display = "none"; } } } function validateEmail(email) { var re = /\S+@\S+\.\S+/; return re.test(email); } //to clear cookie function ReadCookie() { var allcookies = document.cookie; cookiearray = allcookies.split(';'); var count = 0; for (var i = 0; i < cookiearray.length; i++) { name = cookiearray[i].split('=')[0]; if (name.indexOf("RvId") > -1) { count += 1; } } if (count > 10) { for (var i = 0; i < cookiearray.length; i++) { name = cookiearray[i].split('=')[0]; if (name.indexOf("RvId") > -1) { deleteCookie(name) } } } } function deleteCookie(c_name) { document.cookie = c_name + '=; expires=Thu, 01 Jan 1970 00:00:01 GMT;'; } function OpenInNewTab(url) { var win = window.open(url, '_blank'); if (win) { win.focus(); } } //End function GetContentForDiv() { var divId = ''; if (document.getElementById('DivContactPerson')) { divId = document.getElementById('DivContactPerson').innerHTML; } if (document.getElementById('DivLocation')) { divId = divId + "

" + document.getElementById('DivLocation').innerHTML; } if (document.getElementById('Phoneno')) { var str = document.getElementById('Phoneno').innerHTML; str = str.replace('Call Via Skype', ''); str = str.replace('

', '

'); divId = divId + "

" + str; } if (document.getElementById('Email')) { divId = divId + "

" + document.getElementById('Email').innerHTML; } if (document.getElementById('Website')) { divId = divId + "

(Video) Workday and AirAsia

" + document.getElementById('Website').innerHTML; } return divId; } //End function ltrim(stringToTrim) { return stringToTrim.replace(/^\s+/, ""); }

FAQs

How do you chat with Ava? ›

Go to the Chats tab. Tap New chat > New contact. Start chatting with AVA with a simple “Hi”, keywords or questions that are short and simple.

How do I send a message to AirAsia? ›

11/05/2022•FAQs

To send a compliment or complaint, click on the “Chat with AVA ” icon or the chat bubble located at the bottom right of the Customer Support page. If you are using the AirAsia Mobile App, simply launch the app, click on the chat bubble, and then click on AirAsia Support - Live Chat.

How do I contact AirAsia Malaysia? ›

Kindly contact our tarvel agent support via email iaa_travelagentsupport@airasia.com or customer support at support.airasia.com for more information.

How do I claim my AirAsia refund? ›

Please refer to that email for more information as the options offered may differ from time to time.
  1. Select "COVID Flight Changes" from AVA's main menu.
  2. Select "AirAsia cancelled My Flight"
  3. Select either "Credit Account" or "Move Flight"
  4. Proceed to the next steps as instructed by AVA.

How do I contact AirAsia by phone? ›

Outlet Operation Hour : 0800 - 2200 (GMT+08:00) (Daily) Tel: +673-2333045 Temporary closed due to the Covid-19 pandemic.

Is AirAsia live chat 24 hours? ›

AVA is available 24 hours daily to assist with any enquiries or to direct you to the right agent to assist you if she cannot resolve your issue immediately.

How do I send a text to a customer? ›

Best Practices for Texting Customers
  1. Enable Two-Way Conversations. First and foremost, a conversation is not very useful if it's only one-sided. ...
  2. Be Professional, Yet Conversational. ...
  3. Provide Consistent and Timely Answers. ...
  4. Keep Personal Information Secure. ...
  5. Make It Easy to Opt-In or Out of Texts.
11 Mar 2020

How do I send a message to a number? ›

Send and receive text messages in Messages
  1. Open the Messages app .
  2. Tap Compose .
  3. In the 'To' field, enter the names, phone numbers or email addresses that you'd like to message. You can also choose from your top contacts or your whole contacts list.

How do I text an airline information? ›

The flight details include the flight number and the airline name. Only sending the flight number will work for a lot of flights. For example, you can send BA8461 or BA 8461 for a British Airways flight. The message doesn't have to contain only the flight information; you can send it like any normal message.

Can Airlines customer service number? ›

800-433-7300

How do I contact Malaysian Airlines? ›

If you have enquiries about Malaysia Airlines' products and services, kindly contact our 24-hour call centre at 1 300 88 3000 (within Malaysia) or +603 7843 3000 (outside Malaysia).

Can I call in flight? ›

Though technology and aviation have evolved greatly over the decades, you're still not allowed to make in-flight calls. Let's explore why. Aviation has come a long way over the past few decades. Not only is traveling by plane cheaper and more accessible than ever, but it's also much safer and more comfortable.

How do I claim a refund? ›

How to Claim Income Tax Refund? The simplest way to claim your income tax refund is by filing a correct income tax return before the due date. While filing your return you can check the total advance tax payments under Form 26AS.

How can I get a full refund on my flight? ›

You can get a full flight ticket refund only if you booked a refundable ticket. However, airline ticket refund rules vary from airline to airline. Thus, it is better to refer to the airline's website or contact it directly for possible airfare reimbursement.

How do I write a ticket to get a refund? ›

Request for Air Ticket Cancellation, and Rebate of Payment

Dear Reservation Manager, I am requesting the cancellation of my air ticket (ticket number) dated (date) and issuing a payment rebate. I will be unable to travel for some domestic reasons. I hope you will oblige my request.

Can I book flights by phone? ›

Call the Airlines from Phone

You can also call airlines from your phone and book a flight ticket to one of your favorite destinations. You can find the reservation number to book your flight ticket at the official website and dial it worldwide.

What is AirAsia booking number? ›

Whatsapp - +91 6360 012345

Contact us: 080-46662222, 080-67662222.

Does AirAsia refund money? ›

In the situation where you did not board the flight, you may request for a refund on the Airport Tax paid, within six (6) months after the scheduled date of flight departure. You have the option of an AirAsia Credit Account or back to the original mode of payment.

How do I talk to a real agent on Air Asia? ›

Go to the Chats tab. Tap New Chat icon, then select New Contact. Create new contact using +60 11-3516 5078 number.

How Do I Live chat booking? ›

You can go to booking.com/help to get in touch with us.

Can you text customer? ›

According to the Telephone Consumer Protection Act (TCPA), which has been the FCC's leading regulation in electronic communications since 1991, businesses and organizations must obtain written consent from individuals before sending them any text messages. Can a business text a customer without explicit consent?

How do I send a first message to a client? ›

How To Write The Perfect Message To Turn Connections Into Clients
  1. Salutation with that person's name: Who doesn't like to be acknowledged by name? ...
  2. Thank them for choosing to connect with you. ...
  3. Offer a sincere compliment. ...
  4. Ask a question if appropriate. ...
  5. Tell them a bit about what you do and how you could help.
2 May 2016

What is SMS Customer service? ›

SMS customer service is any type of support provided by a company to a customer via text messaging to a phone number. It is completely virtual and requires no face-to-face interaction or verbal communication. According to research by Gigaom, text messages are opened over 4X more often than emails.

How do you address a text message? ›

AT&T: phonenumber@txt.att.net. T-Mobile: phonenumber@tmomail.net. Sprint: phonenumber@messaging.sprintpcs.com. Verizon: phonenumber@vtext.com or phonenumber@vzwpix.com.

How can I send a text message online? ›

You can send text message from any internet-connected desktop computer and also mobile device.
...
Here is the list of websites to send free text message (SMS) online:
  1. Textfree by pinger.
  2. OpenTestingOnline.
  3. Text'em.
  4. Send SMS Now.
  5. txtDrop.
  6. WiFiText.
  7. mySMS.
  8. FoxText.
24 Sept 2022

How do you send a number from a contact? ›

How to Send/Transfer Contact Number form Android ... - YouTube

Can you text on airlines? ›

Among the airlines that let you text for free, the list includes JetBlue Airways, Southwest Airlines, Delta Air Lines and Alaska Airlines. These carriers allow texting either through free inflight Wi-Fi or with the use of text messaging services.

Can you text in the airport? ›

Yes, but only using a Wi-Fi connection. The ban on using a cellular connection means passengers can't send SMS texts. Any communication has to be over Wi-Fi with a messaging app that provides similar functionality like iMessage, WhatsApp, or Viber.

How do you communicate at the airport? ›

At the Airport - Spoken English Lesson - YouTube

How can I talk to a real person on the phone? ›

TIPS FOR GETTING TO A HUMAN:
  1. Dial O, or try multiple zeros.
  2. You can add the # key or the * key before and after a 0.
  3. Dial multiples of other numbers 1111, 2222, 3333, 4444, etc.
  4. Being silent sometimes works (believe it or not some people still have rotary phones)
  5. Speak non-sensible phrases to confuse computer.

What is an airline customer service? ›

An airline customer service agent works either in an airport or a call center. While working in an airport, you provide customers with baggage assistance, confirm travel reservations and itineraries, complete flight check-ins, and print tickets using a point-of-sale system.

What is an airline call center? ›

An airline customer service agent works in an airport or a call center, providing information and assistance to the flying public. In a call center, an airline customer service agent helps customers with flight reservations, itinerary changes, baggage concerns and questions about customer loyalty programs.

How do I call a hotline number in Malaysia? ›

How to Call Toll Free Numbers in Malaysia. To call a Malaysia toll free number from within the country, simply dial the number as you see it (ex. 1-800-XXX-XXX). To call a Malaysia toll free number from outside the country, dial the originating country's exit code followed by the toll free number.

How do I complain about airline customer service? ›

Put your complaint in writing

If talking to staff doesn't resolve things, the next step is to put your complaint in a letter or email. Depending on whose services you are complaining about, this should be addressed to: the customer relations department of the airline. the tour organiser.

How do I claim my ticket on Malaysia Airlines? ›

Contact the Malaysia Airlines Global Contact Centre at 1-300-88-3000 (in Malaysia), +603 7843 3000 (outside Malaysia) to find out if you are eligible. Alternatively, visit here to find your respective country's contact information, submit your request via our online Assistance Request form.

Can you WhatsApp call on a plane? ›

If you have wi-fi turned on Whatsapp works even in Airplane Mode. Apparently this can also happen with Bluetooth turned on. You could use Do Not Disturb for perfect peace. When you said "Why do i receive whatsapp calls" I thought you meant your phone was ringing and you could answer the calls.

Can you text or call on flights? ›

Yes, you can text in airplane mode but you will need to connect to the aircraft's Wi-Fi (assuming that it is available). Some airlines like Delta will allow you to do this free of charge. Can you text on a plane with data? No, you generally cannot text on a plane with data due to FCC regulations.

Can you talk on the phone at the airport? ›

People talk on cell phones at the airport all of the time and it is commonplace. Follow the same rules as you would anywhere else and move to an area where others won't be potentially bothered.

What are valid reasons for a refund? ›

The Top 7 Reasons Why Customer Returns Happen
  • #1 | The Customer Bought the Wrong Item.
  • #2 | The Product is No Longer Needed.
  • #3 | The Product Didn't Match the Description.
  • #4 | A Gift Purchase Was Incorrect.
  • #5 | The Product Was Damaged Upon Arrival.
  • #6 | The Merchant Shipped the Wrong Item.

What to do if you don't get a refund? ›

If the business or seller refuses to help you resolve your complaint, and you still feel like you have a legitimate argument for having your money refunded, there are still other avenues you can take, including chargebacks, mediation, a lawsuit, or arbitration.

What reason should I give for refund? ›

The most common causes of purchase returns are unmet expectations, damaged or defective products, and incorrect fit. Any of these issues can be caused by failures on the merchant's part or by events the merchant had no control over.

Can I get a refund for a delayed flight? ›

There are no federal laws requiring airlines to provide passengers with money or other compensation when their flights are delayed. Each airline has its own policies about what it will do for delayed passengers. If your flight is experiencing a long delay, ask airline staff if they will pay for meals or a hotel room.

What is a fully refundable ticket? ›

A refundable flight entitles you to a refund on what you paid for your airline ticket, but you might be subject to a charge from the airline in order to process that refund.

How do I know if my flight is refundable? ›

How Do I Know My Flight Is Refundable?
  1. Check if the refundable filter is applied on the flight page.
  2. Low fare denote non-refundable tickets and high fare denote refundable tickets.
  3. Contact customer care of the airlines at 1-802-341-3403.
  4. Ask for details from the travel agent who is booking your flight ticket.
9 Oct 2021

How long do airlines take to refund? ›

When a refund is due, the airline must forward a credit to your card company within seven business days after receiving a complete refund application, according to the Transportation Department. However, the credit may take a month or two to appear on your statement.

How do I ask for a ticket cancellation? ›

For example:

I'm reaching out about your case with us regarding [CASE TOPIC]. It's been [NUMBER OF DAYS] days since we've heard from you, so I wanted to reach out and let you know we are going to close this ticket. Please feel free to reopen this ticket or start a new one if you need any further assistance.

How do you chat with Beluga? ›

To invite users, all you need is there name, email, or phone number. If they are already members of Beluga, an invite is sent to them to join the pod. If not a member yet, they can still join the conversation using text messages or have the option to download the app. It is available for both the iPhone and Android.

Can you chat on Forge of Empires? ›

The Mobile Chat can be accessed through the chat icon next to the Messenger in the right extended menu. In order to write chat messages, it is needed to research the Bronze Age technology Paths first. You are able to access the chat in your city and in Guild Battlegrounds as well.

How do I contact AirAsia by email? ›

E-Mail: appellate_in@airasia.com.

What is Beluga real name? ›

The beluga whale (/bɪˈluːɡə/) (Delphinapterus leucas) is an Arctic and sub-Arctic cetacean. It is one of two members of the family Monodontidae, along with the narwhal, and the only member of the genus Delphinapterus.

What app uses Beluga? ›

The Beluga team and its software appears to have been integrated into Facebook Messenger, a stand-alone messaging app for iOS, Android, and BlackBerry.

How do you chat with matches? ›

Move your mouse cursor over the picture of the person whom you wish to chat with to open a pop-up box with more information about them, and then click Chat Now to open the chat window. Also, if someone who shows up in a search that you do is available to chat, it will say so in their profile thumbnail.

How can I talk to people online? ›

Where to find people you can talk to online
  1. Chatting apps. If you want to talk to strangers, try these apps: ...
  2. Chat rooms. Chat rooms have become less popular over the past decade. ...
  3. Social media. ...
  4. Forums and message boards. ...
  5. Discord servers. ...
  6. Videogame streaming sites. ...
  7. Friendship and dating apps. ...
  8. Supportive chat services.
16 Dec 2021

How can I chat with my phone? ›

Google Chat is available in Gmail. You can also use Google Chat on the web and on mobile with apps for Android, iOS, and desktop.
...
Sign in to Google Chat
  1. In the Google Play store, download Google Chat or the Gmail app.
  2. Open the app.
  3. If prompted, sign in to your Google Account to send and receive messages.

How do you do live chat? ›

To post in live chat: Click into where it says “Say Something” and begin entering text. Click Send .
...
Respond to someone in the chat feed
  1. Type “@”.
  2. Begin typing their username.
  3. Select the username.

Is Forge of Empires OK for kids? ›

This game is NOT suitable for children! Forge of Empires Forum.

Can you chat in play together? ›

You can enter messages or send pre-written chat at the Chatting Box. - You can chat by going to [the bottom center of the screen > tap the chat box > enter text]. - You can send pre-written text by going to the [bottom of the screen > tapping the text icon on the right > select from the pre-written text].

How do I chat in Guild? ›

/tell with "@UserID" or their character's name sends a private chat message to the indicated player. /guild 1 or /g1 sends a message to the first guild you've joined. If you join multiple guilds, you can use the numbers 2-5 to speak to your other guilds (ex. /guild 2 or /g2).

How do I contact an airline? ›

Call 24x7 Customer Care numbers 0124-2641407 / 020-26231407 / 1860 233 1407 from MTNL / BSNL lines and Mobile / landlines of most private telecom operators in India only.

How do I talk to real agent AirAsia? ›

Chat room is only accessible via AirAsia Mobile Apps. Download now on Google Play and App Store. Already have AirAsia Mobile Apps installed on your smartphone? Locate the affected flights below and gain access to the dedicated chat room.

How do I email an airline complaint? ›

How to write an airline complaint:
  1. Be polite, specific, and straight to the point. ...
  2. Include your frequent flyer number.
  3. “Sleep on it”. ...
  4. Never say, “I will never fly your airline again!” since that gives the airline no incentive to help.

Videos

1. Malaysia: Gateway To Asia - Episode 3 - Air Asia (Fine_V_2_854x480_H264.mov)
(WorldBizWatch)
2. Assignment Air Asia Bhd
(Assignment)
3. AIRASIA PH Baggage Policy 2022 | JM BANQUICIO
(Jm Banquicio)
4. FAR570-MAC2204A-GROUP PRESENTATION (AIR ASIA BERHAD)
(Nurin aisyah)
5. NusantaraProject Group 29 - A Study on Customer Satisfaction of Air Asia Berhad.
(Low Yen Ling)
6. AIR ASIA X BERHAD | PFM323 FINANCIAL MANAGEMENT GROUP 5
(Nur Husnina Binti Salim)
Top Articles
Latest Posts
Article information

Author: Dong Thiel

Last Updated: 04/06/2023

Views: 5909

Rating: 4.9 / 5 (59 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Dong Thiel

Birthday: 2001-07-14

Address: 2865 Kasha Unions, West Corrinne, AK 05708-1071

Phone: +3512198379449

Job: Design Planner

Hobby: Graffiti, Foreign language learning, Gambling, Metalworking, Rowing, Sculling, Sewing

Introduction: My name is Dong Thiel, I am a brainy, happy, tasty, lively, splendid, talented, cooperative person who loves writing and wants to share my knowledge and understanding with you.