#samiya_webhooks

1 messages ¡ Page 1 of 1 (latest)

vital sedgeBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1424632252935176194

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

dense mesa
inner moth
#

Can we write a radar rule to block duplicate transactions from a card even if the card is in trialing subscrption yet

dense mesa
#

Can you share more context? there's no transaction if the subscription is still trialing.

inner moth
#

I have 3 domains, and on each domain I have a landing page where I am using Stripe subscription (7-day trial using setup intent to store the card) and then recurring transactions after that. What I want is that, e.g someone subscribes for a subscription on one domain using a card, then if the user tries to submit another form using the same card either on the same domain or another domain, it should throw an error

dense mesa
#

Are you using the same Stripe account for all these 3 domains?

inner moth
#

Yes

#

With different products

dense mesa
#

Ok. So basically you want to block a transaction if the same credit card has been used in another subscription, am I right?

inner moth
#

yes

dense mesa
inner moth
#

But this will block the the recurring payments as well I guess?

#

I just want to not have duplicate subscriptions with one card

dense mesa
#

You can combine the rule with the is_recurring attribute. For example

Block if :seconds_since_card_first_seen: > 0 AND NOT :is_recurring: to avoid blocking recurring payments.

inner moth
#

So this will block duplicate transactions from a card but not the first recurring payment?

dense mesa
#

Yes you are right. To be clear, the first payment that your customer completed in checkout isn't considered as "recurring payment".

inner moth
#

When I submit a form with a card for the first time its subscription will works correctly but if I use the same card again, it will block the form submission?

dense mesa
#

Have you tried? What's the subscription ID?

inner moth
#

No I didnt try it yet. I was just confirming before trying

dense mesa
#

I'd suggest you to test it out in sandbox environment and let me know if you encounter problelms