Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am calling a tRest component and that returns Body and ERROR_CODE. If the call is successful, the ERROR_CODE is null.
How can I make sure only this happy path continues the flow? In other words if ERROR_CODE is null then continue, if not then do something else?
tRest has an "Run if" output but that won't connect to a tExtract nor a tMap.
You could try using tFilterRow component to test the value of ERROR_CODE:
You could try using tFilterRow component to test the value of ERROR_CODE:
Sweet, thanks. That gives me the split I was looking for.