Create Project Custom Function Not Working

Create Project Custom Function Not Working

When I follow the instructions below

// TODO: Please create a connection for the Zoho Projects service with the scopes "ZohoProjects.clients.CREATE" to Replace 'xxxxxxxxx' and Zoho CRM service with the scopes  "ZohoCRM.modules.CREATE " to Replace 'yyyyyyyyy' with the connection name. Click this link below to learn how to create the connection.

projectsAPIEndPoint = "https://projectsapi.zoho.com";
module = "Accounts";
projectDetail = invokeurl
[
url :projectsAPIEndPoint + "/api/v3/portal/" + portalId + "/projects/" + projectId + "/crm/" + module.toLowerCase()
type :GET
connection:"xxxxxxxxx"
];

for each  client_company in projectDetail.get(module.toLowerCase())
{
CrmAccountId = client_company.get("id");
notesMap = Map();
notesMap.put("Parent_Id", CrmAccountId);
notesMap.put("Note_Title", NoteTitle); 
notesMap.put("Note_Content", NoteDescription);
notesMap.put("$se_module", module);
response = zoho.crm.createRecord("Notes",notesMap,Map(),"yyyyyyyyy");
info response;
}
return "success";

// TODO: Please create a connection for the Zoho Projects service with the scopes "ZohoProjects.clients.CREATE" to Replace 'xxxxxxxxx' and Zoho CRM service with the scopes  "ZohoCRM.modules.CREATE " to Replace 'yyyyyyyyy' with the connection name. Click this link below to learn how to create the connection.

The Insert ZohoProjects.clients.CREATE and ZohoCRM.modules.CREATE  returns an error .....CREATE does not exist


Please Help!!