ZohoDesk : whiteListedDomains - not recognised

ZohoDesk : whiteListedDomains - not recognised

Code

  1. var data = ""; 
  2. var requestURL = "https://www.zohoapis.eu/crm/v2/accounts/" + "<ID REPLACED>";
  3. var requestType = "GET";
  4. var connection = "crm";
  5. var reqObj = {
  6. url: requestURL,
  7. headers: {'Content-Type' : 'application/json'},
  8. type: 'GET',
  9. connectionLinkName: connection
  10. };

     ZOHODESK.request(reqObj).then(function(response){
  11.        console.log(response);
  12. }).catch(function(err){
  13.        console.log("Errors");
  14.        console.log(JSON.stringify(err)); }
  15. );

Error message

{"errMessage":"No entry found in plugin-manifest whiteListedDomains for requested URL"}
widget.html?serviceOrigin=https%3A%2F%2Fmydomain.com&isDevMode=true&frameorigin=https://mydomain.com:45

Whitelisted Domains (in plugin-manifest.json)

 "whiteListedDomains": [
"https://*.zohoapis.eu",
"https://127.0.0.1:5000",
        "https://mydomain.com"
],


How can I tell what domain is being blocked? Or, have I formatted something incorrectly?