I am using Try-Catch-Raise inside Compound Action to handle error Status Code scenarios and show user static message.
Example:
Status Code 401 = return static message with a link to request access.
Status Code 500 = return static message with a link to raise incident ticket.
But for Status Code 400, I’ll need to return different message to user depends on the response error JSON object.
The Raise step has an output_key which can store the error JSON object:

May I know where and how can I access+use this output_key?
I tried adding Action/Return/Switch after the Raise, but none of them works because plugin will end gracefully after Raise.
If I change the Raise to Return (so that it is now Try-Catch-Return, no more Raise), how can I map the response’s error object in the Return?
Appreciate if anyone can give some example if achieve this before, thank you.