Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
pthomas
Contributor III
Contributor III

tRest error code handling

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.

Labels (6)
1 Solution

Accepted Solutions
mchapman
Employee
Employee

You could try using tFilterRow component to test the value of ERROR_CODE:

mchapman_0-1743455083433.png

 

View solution in original post

2 Replies
mchapman
Employee
Employee

You could try using tFilterRow component to test the value of ERROR_CODE:

mchapman_0-1743455083433.png

 

pthomas
Contributor III
Contributor III
Author

Sweet, thanks.  That gives me the split I was looking for.