#nukesforbreakfast_best-practices
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1291499602582704199
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi ๐ no, there is not sort of updated parameter on Account objects. You can reference the created timestamp on the Event object to try to figure out its order compared to other Events:
https://docs.stripe.com/api/events/object#event_object-created
But depending on the frequency of the changes being made that may not be granular enough. You can retrieve the Account object to get its current state if you're uncertain whether the account.updated Event is the most recent one for the account and contains the current state of the Account object.
ah, but that wouldn't tell me what fields changed.
ok, I can probably just use metadata to store the last time the branding was updated.
Are metadata writes strongly consistent or eventually consistent?
Updating metadata on an object is reflected immediately