I use postman for running REST api’s over JD Edwards E1 and have coded a number of test scripts to format the Json responses into easy to read tables for our support staff.
To do this I usually code the response values as {{response.identifier1.identifier2}} and everything comes out fine.
However, one particular api gives a response like:
[ { identifier: “value” } ]
No matter how I code it, I can’t get a value out. I have tried:
{{response.identifier}}
{{response.NULL.identifier}}
{{identifier}}
{{NULL.response.identifier}}
etc
But nothing seems to work. Is there something I’m missing?
Thank’s in advance
Jonathan