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
As it currently stands the contacts endpoint doesn't return any metrics. It would be really useful to have some default metrics start to trickle into the contacts endpoint. That way the default usage of this endpoint in the data source will not require the creation of custom metrics and they can be used out of the box.
In particular these 5 metrics:
Active Member?
Calculated as follows:
CASE
WHEN IsActiveMember = TRUE THEN 1
ELSE 0
END
Lapsed Member?
CASE
WHEN IsLapsedMember = TRUE THEN 1
ELSE 0
END
Pending New Member?
CASE
WHEN IsPendingNewMember = TRUE THEN 1
ELSE 0
END
Pending Renewal?
CASE
WHEN IsPendingRenewalMember = TRUE THEN 1
ELSE 0
END
Pending Level Change?
CASE
WHEN Status = "PendingUpgrade" THEN 1
ELSE 0
END
The text was updated successfully, but these errors were encountered:
As it currently stands the contacts endpoint doesn't return any metrics. It would be really useful to have some default metrics start to trickle into the contacts endpoint. That way the default usage of this endpoint in the data source will not require the creation of custom metrics and they can be used out of the box.
In particular these 5 metrics:
Active Member?
Calculated as follows:
Lapsed Member?
Pending New Member?
Pending Renewal?
Pending Level Change?
The text was updated successfully, but these errors were encountered: