Skip to main content
Corvus Connection

On Tier Change

PatreonTrigger
entry.onTierChangeFires when a patron entitled pledge amount changes. Binds the from/to tier, old/new cents, an isUpgrade flag, and currency so a flow can branch on the direction.Triggers on a Patreon tier change; binds displayName / fromTier / toTier / oldCents / newCents / isUpgrade / currency.
Monetization

Outputs

Name
Kind
Type
Flags
outExecexecNone
displayNameDataSystem.Stringmultiplexed
fromTierDataSystem.Stringmultiplexed
toTierDataSystem.Stringmultiplexed
oldCentsDataSystem.Int32multiplexed
newCentsDataSystem.Int32multiplexed
isUpgradeDataSystem.Booleanmultiplexed
currencyDataSystem.Stringmultiplexed

Bindings

Name
Type
Description
displayNameSystem.StringThe patron display name, or empty for an anonymous patron.
fromTierSystem.StringThe tier the patron moved from, or empty when unknown.
toTierSystem.StringThe tier the patron moved to, or empty when unknown.
oldCentsSystem.Int32The prior entitled pledge amount in cents.
newCentsSystem.Int32The new entitled pledge amount in cents.
isUpgradeSystem.BooleanTrue when the patron moved up to a higher pledge, false on a downgrade.
currencySystem.StringThe ISO currency code of the campaign.

Parameters

Name
Type
Required
Default
Choices
cooldownSecondsSystem.Int32no0None
perUserCooldownSecondsSystem.Int32no0None
debounceMsSystem.Int32no0None
dedupeKeySystem.Stringno""None
maxConcurrencySystem.Int32no0None

Lowers to C#

[OnTierChange] Handle(ctx, TierChangeContext e)