Hi everyone.
I'm using the subscriptions API for recurring payments and i need to send an email to users who are in "trial" mode, couple of days before their first payment. I set the start date 1 month later and i track if a user is in "trial" mode by checking the startDate.
This will be checked in a cron job daily, so i will need to grab the startDate from mollie subscription API.
The way I see it I have 2 ways of going around this.
- Call the mollie api daily, get all customer's subscriptions, and check the startDate.
- Store the subscriptions info in my db but then I'll have to keep that in sync with the subscriptions info from mollie and i don't see any good way of doing that.
I'm worried what would be the best scenario here. Would i get a rate limited from mollie if i go with the first way and call the api daily to get the info?