Is there a way to store API response as JSON/object instead of text/string?

I'm brand-new to coding, so forgive me if this is a dumb question or an obvious fix, I just can't see it. I'm doing an API call on an appointment scheduler to get a list of currently booked appointments for a user. I know for a fact that there are a total of two appointments on the schedule. The response body lists them as "0" and "1" respectively.

I'm getting an error that ChatGPT says might be because API mapping stored the response as a stringified object via .toString(), instead of as proper JSON. How can I ensure that the captured response from the API call is being stored as JSON and not text?

Note: If I change " response " to " resonse.* " in the capture section, the API will return only one, not both, appointments. If I change it back to " response " it throws the error.
image.png
Was this page helpful?