Hi everyone,
This is probably baby knowledge, but I can't find any examples and I've tried 40 different variations without a win:
I've got destinations that return JSON objects which I store in the responseMap like this:
responseMap.put('someMessage', response.getMessage())
The object is like this (more or less)
I need to be able to check the success status in a subsequent destination to determine whether to continue processing
How do I check the "success" field value?
Thanks!
This is probably baby knowledge, but I can't find any examples and I've tried 40 different variations without a win:
I've got destinations that return JSON objects which I store in the responseMap like this:
responseMap.put('someMessage', response.getMessage())
The object is like this (more or less)
HTML Code:
{ "id": 12345, "success": true }
How do I check the "success" field value?
Thanks!
Comment