FAQ: AAdvantage Citi / Barclays 10% miles / mileage rebate (ends 1 May 2019)
|
|||
#16
Join Date: Oct 2010
Location: La Jolla, Ca
Programs: AA 2MM LT PLT; AS MVP Gold; HHonors Diamond; IHG PLT
Posts: 3,092
Another colossal failure by a "too big to fail" entity.
#17
Join Date: Jun 2008
Location: Everywhere you wanna be
Programs: AA EP | UA 1K
Posts: 1,657
Sabre is older than most people here; i wouldn't say lazy more like extremely old and limited computer system. And why should they program it to stack benefits? i doubt they intended the benefits to be stackable otherwise anyone could just get 10 credit cards and get 100% of their miles back everytime... lol
#18
FlyerTalk Evangelist
Join Date: Jan 2005
Location: home = LAX
Posts: 25,130
Sabre is older than most people here; i wouldn't say lazy more like extremely old and limited computer system. And why should they program it to stack benefits? i doubt they intended the benefits to be stackable otherwise anyone could just get 10 credit cards and get 100% of their miles back everytime... lol
#19
Join Date: Dec 2005
Location: FLL
Programs: AA PLT 2.7 MM, DL GLD, UA Prem, BW Diamond, PC PLT, HH Diamond
Posts: 1,280
Btw, there is more than one way that this benefit could theoretically be stackable. While neither seems likely to me, keep in mind that it could be a stacking of the 100k cap, rather than a stacking of the 10%. Ie, it could be 10% back on a max of 100k if you have one bank's card, but 10% back on a max of 200k if you have both banks' cards. That would be a stacking that fewer people would run into or be able to take advantage of, and so that might be a stacking they'd be less opposed to.
The question here , which I am presenting is since Barclays and Citi are two different entities would each give you 10% with a total between the 2 of 20K?
I also heard that Barclays will no longer issue CCs with the AAdvantage miles benefit at all after the merger of the two programs. IF you have one you can keep it but, no new cards.
#20
Join Date: Dec 2005
Location: FLL
Programs: AA PLT 2.7 MM, DL GLD, UA Prem, BW Diamond, PC PLT, HH Diamond
Posts: 1,280
I extremely doubt it.
You need to understand how the computer programming works on such automatically-given benefits, and then you'd see why they won't stack.
Here is how the code currently works at AA with the Citi AA cards:
There is a Boolean (yes/no) variable called something like "10_percent_rebate_enabled".
It gets initialied to "no" when an AA account is created (or when this feature was first added, for older AA accounts).
If it sees you've got a Citi AA card, it sets that variable to "yes".
If it sees you've got another Citi AA card, it again sets that variable to "yes". (It can't set it to "more yes"; the only possible states for the variable are "yes" or "no".)
Ie, there's no addition involved; however many cards you have, they all set the same variable to "yes".
In turn, once you redeem miles, it checks that variable, and if it's set to "yes", it gives you the 10% bonus (limited to the 10k cap); if it's set to "no", it doesn't.
And thus there's nothing else for a Barclay card to do but set that very same variable to "yes". And have the same effect as a second or third or fourth Citi AA card setting it to "yes".
That's the way any decent programmer would implement it, that's clearly the way it's implemented for Citi AA cards, and I see no reason for it to be implemented any other way when Barclay AA cards come into the mix.
You need to understand how the computer programming works on such automatically-given benefits, and then you'd see why they won't stack.
Here is how the code currently works at AA with the Citi AA cards:
There is a Boolean (yes/no) variable called something like "10_percent_rebate_enabled".
It gets initialied to "no" when an AA account is created (or when this feature was first added, for older AA accounts).
If it sees you've got a Citi AA card, it sets that variable to "yes".
If it sees you've got another Citi AA card, it again sets that variable to "yes". (It can't set it to "more yes"; the only possible states for the variable are "yes" or "no".)
Ie, there's no addition involved; however many cards you have, they all set the same variable to "yes".
In turn, once you redeem miles, it checks that variable, and if it's set to "yes", it gives you the 10% bonus (limited to the 10k cap); if it's set to "no", it doesn't.
And thus there's nothing else for a Barclay card to do but set that very same variable to "yes". And have the same effect as a second or third or fourth Citi AA card setting it to "yes".
That's the way any decent programmer would implement it, that's clearly the way it's implemented for Citi AA cards, and I see no reason for it to be implemented any other way when Barclay AA cards come into the mix.
#21
Join Date: Dec 2005
Location: FLL
Programs: AA PLT 2.7 MM, DL GLD, UA Prem, BW Diamond, PC PLT, HH Diamond
Posts: 1,280
Well they could use something like
if Citi_rebatecardholder = TRUE then
max_citi_rebate:=10;
else
max_citi_rebate:=0;
endif;
if barclay_rebatecardholder = TRUE then
max_barclay_rebate:=10;
else
max_barclay_rebate:=0;
endif;
max_total_rebate:=max_citi_rebate+max_barclay_reba te;
if Citi_rebatecardholder = TRUE then
max_citi_rebate:=10;
else
max_citi_rebate:=0;
endif;
if barclay_rebatecardholder = TRUE then
max_barclay_rebate:=10;
else
max_barclay_rebate:=0;
endif;
max_total_rebate:=max_citi_rebate+max_barclay_reba te;
#22
FlyerTalk Evangelist
Join Date: Jan 2005
Location: home = LAX
Posts: 25,130
So in the long run, it'll be whatever AA decides. Why AA should decide that that they'll give you twice the bonus (either by stacking the 10% or stacking the cap), just because they ended up with two banks, I can't conceive myself. But then, I don't know why there's a cap in the first place. (The IHG Club hotel program -- Holiday Inn, Crowne Plaza, etc -- gives a 10% rebate on reward redemptions to people who have their Chase card, and in their case it's not capped at all.)
In the short run, it might be different than whatever they decide in case the coding is done in error.
#23
Join Date: Jun 2011
Posts: 3,225
Well they could use something like
if Citi_rebatecardholder = TRUE then
max_citi_rebate:=10;
else
max_citi_rebate:=0;
endif;
if barclay_rebatecardholder = TRUE then
max_barclay_rebate:=10;
else
max_barclay_rebate:=0;
endif;
max_total_rebate:=max_citi_rebate+max_barclay_reba te;
if Citi_rebatecardholder = TRUE then
max_citi_rebate:=10;
else
max_citi_rebate:=0;
endif;
if barclay_rebatecardholder = TRUE then
max_barclay_rebate:=10;
else
max_barclay_rebate:=0;
endif;
max_total_rebate:=max_citi_rebate+max_barclay_reba te;
#24
Join Date: Aug 2008
Programs: AA EXP
Posts: 1,714
Are you sure about this? I always thought that the miles were purchased from AA by the card issuers (and therefore given to the CC holder by the card issuer via AA). Why would these miles work in a different way to the sign up miles one can collect?
#25
FlyerTalk Evangelist
Join Date: Jan 2005
Location: home = LAX
Posts: 25,130
Now, AA may (on a monthly, or yearly, or whatever) basis take all those 10% rebates, add them up, and then deduct them from Citi's miles account, who knows. But that's irrelevant to how it posts, and how it posts is the only issue relevant to the question in this thread, whether the upcoming Barclay's 10% benefit would "stack" in any way with Citi's existing 10% benefit.
But, if you want to focus on it, here's an issue: What if these don't stack, and either a Barclay AA card and/or a Citi AA card enable this feature. Since you don't have to use either card on the award reservation to get the rebate, to which bank would AA attribute the rebate cost, if you have both the Barclay AA and Citi AA cards? So the very fact that AA has agreed to Barclay also having an AA card (even if only "grandfathered") makes me wonder if Citi pays anything for these rebates.
#26
Join Date: Dec 2005
Location: FLL
Programs: AA PLT 2.7 MM, DL GLD, UA Prem, BW Diamond, PC PLT, HH Diamond
Posts: 1,280
I wasn't talking about who pays for it, I was talking about who actually puts it in your account. It's AA who does, whether you used a Citi card for the fees on that award redemption or not. There's no way that AA notices an award redemption, sends it to Citi, Citi calculates 10%, sends it back to AA. It's all handled within AA, simply based on you having (not you using) a Citi AA card.
Now, AA may (on a monthly, or yearly, or whatever) basis take all those 10% rebates, add them up, and then deduct them from Citi's miles account, who knows. But that's irrelevant to how it posts, and how it posts is the only issue relevant to the question in this thread, whether the upcoming Barclay's 10% benefit would "stack" in any way with Citi's existing 10% benefit.
But, if you want to focus on it, here's an issue: What if these don't stack, and either a Barclay AA card and/or a Citi AA card enable this feature. Since you don't have to use either card on the award reservation to get the rebate, to which bank would AA attribute the rebate cost, if you have both the Barclay AA and Citi AA cards? So the very fact that AA has agreed to Barclay also having an AA card (even if only "grandfathered") makes me wonder if Citi pays anything for these rebates.
Now, AA may (on a monthly, or yearly, or whatever) basis take all those 10% rebates, add them up, and then deduct them from Citi's miles account, who knows. But that's irrelevant to how it posts, and how it posts is the only issue relevant to the question in this thread, whether the upcoming Barclay's 10% benefit would "stack" in any way with Citi's existing 10% benefit.
But, if you want to focus on it, here's an issue: What if these don't stack, and either a Barclay AA card and/or a Citi AA card enable this feature. Since you don't have to use either card on the award reservation to get the rebate, to which bank would AA attribute the rebate cost, if you have both the Barclay AA and Citi AA cards? So the very fact that AA has agreed to Barclay also having an AA card (even if only "grandfathered") makes me wonder if Citi pays anything for these rebates.
I spoke with two different reps this week to make sure. They must have gotten a memo on the situation. The bonuses do stack! If one has both cards its 20% back for a max of 20K per year. They also mentioned the Barclay card for AA will close for applications forever very soon.
#27
Join Date: Oct 2010
Location: La Jolla, Ca
Programs: AA 2MM LT PLT; AS MVP Gold; HHonors Diamond; IHG PLT
Posts: 3,092
I can confirm that the answer is YES.
We had an award reservation on hold, due to expire at 11:59 pm PST on Friday, March 27. Did not make a final decision until about 10:30 pm that night, website was down, called to either extend the hold or book it. As no inventory as available, we decided to pull the trigger, confirmation was not received until approx 7:30 am on March 28.
I was able to partially access my account this morning, shows that my USDM transferred properly, and both Citi and Barclay's credited the 10% redemption bonus!
My Barclays account is up for renewal in the next couple of weeks, bonus miles do not justify paying the annual fee to both, I have no intention of charging $30k on either card for the 10k bonus, would keep the Barclays card if they still offered the companion pass. Will see if they are willing to waive the fee to keep me as a customer.
We had an award reservation on hold, due to expire at 11:59 pm PST on Friday, March 27. Did not make a final decision until about 10:30 pm that night, website was down, called to either extend the hold or book it. As no inventory as available, we decided to pull the trigger, confirmation was not received until approx 7:30 am on March 28.
I was able to partially access my account this morning, shows that my USDM transferred properly, and both Citi and Barclay's credited the 10% redemption bonus!
My Barclays account is up for renewal in the next couple of weeks, bonus miles do not justify paying the annual fee to both, I have no intention of charging $30k on either card for the 10k bonus, would keep the Barclays card if they still offered the companion pass. Will see if they are willing to waive the fee to keep me as a customer.
#28
Join Date: Jul 2001
Posts: 3,595
Cool, my balances are combined and it's nice to see this. I can't see clearly if the "within 6-8 weeks" of the rebated points means after booking or taking the trip. I have Citi and Barclays cards, planning to make an 11-month advance award booking in June, and planning not to renew the Citi card in September. So can I expect to get 20% of points back without needing to renew that card?
#29
Join Date: Dec 2014
Posts: 122
For me, it looks like the result is not stacking the 10%. It may end up stacking the 10k cap, up to 20k total.
I booked a redemption for 25,000 miles today. The card bonus was oddly split between both cards for 1,250 each, adding up to 2,500 miles (10% rebate).
http://imgur.com/IZ7P1Cb
I booked a redemption for 25,000 miles today. The card bonus was oddly split between both cards for 1,250 each, adding up to 2,500 miles (10% rebate).
http://imgur.com/IZ7P1Cb