Hi there!
Is it possible to add some kind of text from the response for each error happened during execution?
I have this in the response body:
{“meta”:{“messages”:[{“code”:“UNAUTHORIZED_ACCESS”,“text”:“Error returned from introspection endpoint: Unauthorized”,“level”:“error”,“traceId”:“1233244234”}],“status”:“failed”}}
For example, next to “status.find.in([200, 209], 304), found 401” to add something like this:
status.find.in([200, 209], 304), found 401 - Error returned from introspection endpoint: Unauthorized
or maybe entire response:
status.find.in([200, 209], 304), found 401 - {“meta”:{“messages”:[{“code”:“UNAUTHORIZED_ACCESS”,“text”:“Error returned from introspection endpoint: Unauthorized”,“level”:“error”,“traceId”:“1233244234”}],“status”:“failed”}}
Or any other solution that will help a bit during report review?
Thanks in advance!