Hi All,
Im trying to read data out of my HTTP Get Response`s body however im having a hard time trying to parse the JSON to be able to work with it.
Im sending a Mobile number from user input and the following is being returned
inside this
{{make_a_http_request.body}}
.
[{"_id":“cont_004”,“name”:“Fred Adam”,“mobile_no”:“0666666666”,“office_no”:“0123454321”,“email”:“fredadam.com”}]
Then im using the Code Executer to try and parse the JSON but it isnt working.
const json = ‘{{make_a_http_request.body}}’;
const obj = JSON.parse(json);
resolve(JSON.parse(json));
Any advice?