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
When writing idempotent workflows, we often will do a GET on a resource to see if it exists and branch based on the result - if we get a 404 we create and continue with the new object and if we get a 200 we just proceed with the existing object.
This is a very common automation pattern, and we should support it there.