You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given a campaign TrialConversionCampaign, I want to be able to specify a trial end date when adding users to campaigns, so that I can reference the date in campaign emails (i.e. "Your trial is ending on 2020-02-26"). These values are unique to each user in the campaign, but may not be persisted on the user object--in this case, the value is part of an event that is triggering the campaign for the user. It would be nice to be able to add/override params like this:
I think this could be accomplished by adding a params jsonb/hstore/etc. column to the heya_campaign_memberships table. A nice extra would be to transparently support Global IDs for referencing objects.
The text was updated successfully, but these errors were encountered:
I have a similar need. When a customer's payment fails, I add them to a PaymentDeclinedCampaign which starts sending them emails asking to update their payment details.
When triggering the campaign, I have access to a specific "update billing details" for the failed invoice. I don't have (easy) access to this elsewhere in the code. Being able to pass in this URL to the campaign would be very useful.
Given a campaign
TrialConversionCampaign
, I want to be able to specify a trial end date when adding users to campaigns, so that I can reference the date in campaign emails (i.e. "Your trial is ending on 2020-02-26"). These values are unique to each user in the campaign, but may not be persisted on the user object--in this case, the value is part of an event that is triggering the campaign for the user. It would be nice to be able to add/override params like this:I think this could be accomplished by adding a
params
jsonb/hstore/etc. column to theheya_campaign_memberships
table. A nice extra would be to transparently support Global IDs for referencing objects.The text was updated successfully, but these errors were encountered: