Below, you can see the output from these two logs. The first clearly shows the full object with the property I\'m trying to access, but on the very next line of code, I can\
if you're using TYPESCRIPT and/or ANGULAR, it could be this!
TYPESCRIPT
ANGULAR
.then((res: any) => res.json())
setting the response type to any fixed this issue for me, I couldn't access properties on the response until i set res: any
see this question Property '_body' does not exist on type 'Response'