Skip to main content

Amazon India Prime Offer - A scam or a bug?

TLDR; Amazon.in shows and sends me a Prime offer that I can't avail (it leads to an error message)

I have escalated this issue to Amazon India through various means, but the team wants screenshots (even after sharing them through Twitter) and so here's the post explaining that...

1. Amazon India sends me an email: Your Prime membership ends soon - Renew early to lock in old price of ₹999 1499 for another year of Prime.

The newsletter comes like this:

Prime promo email from Amazon India

Rajesh, Renew Prime early and save ₹500

Your Prime membership ends soon Renew today

Expiring soon

DON'T GO A DAY WITHOUT PRIME!

Your Prime membership ends soon - Renew early to lock in old price of ₹999 1499 for another year of Prime. Continue enjoying uninterrupted Prime benefits.

Renew today

Kindly ignore if you have already availed this offer.

Please note that product prices and availability are subject to change. Prices and availability were accurate at the time this newsletter was sent; however, they may differ from those you see when you visit Amazon.in.
Reference: 645589581

2. Amazon Prime Video shows a banner asking me to renew with an offer

3. Clicking the Amazon.in Prime offer, leads to an error page

You are no longer eligible for this offer.

This purchase is non-refundable. Offer limited to one per customer and account. Your Prime membership will not be auto renewed after next membership. Terms & conditions apply.

Contacting Amazon India Support

Here comes the weirdest support loop...

  1. I contacted the chat support and explained the issue
  2. Chat support connected me with a Prime team through the call
  3. A Prime team member says it is a Youth-only offer (which is wrong)
  4. I contact Amazon Twitter support with the necessary screenshots. Even after seeing those screenshots, they either reply with canned messages and then say it is a Youth-only offer (they also shared a link to the Youth-only offer page, which was not opening for me)
  5. Another canned reply came from the Amazon social media team.

What could be the reasons (Amazon India Scam or bug?)

  • It is definitely a programming issue in terms of UI/UX. The error page should have provided more details.
  • Probably auto-renewal might be already enabled and the price increase may not be affecting me. In that case, again the error message should have been clear.
  • Since, I didn't avail this offer already, there might be some programming errors.
  • The sales team, email marketing team, and development team may not be in sync. Or, the QA team might not have enough details to test the UX part.
  • While I don't think it is a scam, the support and responses received here are really pathetic

Comments

Popular posts from this blog

Open source PHP frameworks and problems

I was using CakePHP for sometime and proposed CakePlus , another UIMS toolkit on the top of CakePHP but also altering some problematic core of it. The thread should explain the outcome of the post. And, then I noted Akelos framework has most of the things built in. Issues with frameworks esp. CakePHP Scalability not a priority - Developers aren't aware that we can't throw more and more hardware Excessive use of regular expressions Evangelist isn't aware that the framework throws many queries unnecessarily More memory consumption - 100M would never be enough for a simple project Poor coding standards and practices - Prolong use of extract() often leads to more memory consumption Can't use the native approaches or baked codes. The override approach always lead to hard to debug codes Poor architected codes and no clear defined approaches. People belong to the cult drives the direction and often throws unprofiled codes. No native provision to share codes between M-V-C and...

What's wrong with delicious.com?

The recent UI changes of delicious.com is quite confusing and smells suicidal phase. I have noted that, after Joshua Schachter sold it to Yahoo!, it's going crazy changes. Probably, it's because a Yahoo! company now or Engineers don't get the real idea? Some crazy moves: del.icio.us to delicious.com change; probably to reach countries that censor .us TLD? delicious.com to www.delicious.com; unjustified Perl to PHP switch; why? for:handle geekish way to share to separate box; crazy but ok. Looks like, the new Yahoo! guys don't know how to make it a cult following like how twitter popularized @handle Recent broken UI

Interview question #2

This is related to PHP's array . An array has number of elements. All elements are integers and unique, which means there is no repetitive integers. (e.g.) $foo = array(7, 5, 9, 13, 2, 8); You have to sort the array, provided: You should scan the elements only once. You're not allowed to compare the elements when sorting. (i.e., you're not supposed to use any comparison operators) Sorted resultant array may not be the source array. How will you do that?