Possible to map the statuscode and statustext from a web request that does not throw an exception

Hi! You have access to the Code (200) the following way:

Result parser:
rawResponseData.responseCode = responseCode
return rawResponseData

Result mapping (example, mapping to app variables, there the web request simply returns { “Success”:true} ):
image

The statusText is not available, but I believe it’s quite standard. Also, other codes then 200 will typically throw a exception, and you may catch then using catch exception (and use the value mapping in the catch exception action node)

1 Like