I need help finding the right way to retrieve the value of the message "Meeting 9943...is not found or has expired".
Here's what I tried:
if (response.data.status == 404) {
angular.element(document.getElementById("msg")).css("color", "red");
$scope.msg = response.data.message.message; // This shows as undefined
console.log("Status Code= " + response.data.status + ", Status Text= " + response.data.message);
return false;
}
https://i.sstatic.net/NB7jk.png
Can anyone guide me on the correct approach to access the content of response.data.message.message?
Appreciate your assistance!