hey, is it possible to during one of my flows I up...
# ask-a-descoper
s
hey, is it possible to during one of my flows I update the user with a dynamic prop that is a formula? something like after signup update some attributes to a value like
_Date_.now()+days*24*3600000
? examples on images
f
For doing this currently, you need to do it via http connector. You can call external endpoint and get that dynamic value
g
out of curiosity - what do you want to store in the
end
attribute? the timestamp that is 30 days after sign up? (noting that `firstSeen`is a boolean attribute that is used for sign-up-or-in to note weather the user is signing up (firstSeen is true) or signing in (firstSeen is false)
s
@great-diamond-35515 yes, I want to store the timestamp from 30days ahead
I believe on documentation when you’re inside the flow builder, it says it holds the date and time of first seen lol, I can confirm it soon
f
you are right. That is wrong documentation.
Will file an issue.
s
Thanks! I’m currently doing the update via SDK, but I just found out that it is possible to do updates through the flow builder (which is very nice btw)
g
thanks for the feedback! We will also explore the option to manipulate data in the flows FYI Leopoldo, you might use user’s createdTime (which epoch unix time) for that purpose in the meantime - and have the +30 days logic somewhere else in your app also note you can create your own custom field with that value by map the
user.createdTime
(but I don’t think its needed because you have the
createdTime
already)
🙌 1