"message":"The value passed for the 'cf' parameter is invalid."}
Team,
I am trying to write a custom function in Zoho flow to fetch ticket information from Zoho desk. The function is expected to retrieve the custom field(cf_incident_key) data from Zoho desk. some guidance here will be helpful. I have done various changes to code and got different exceptions. I am very new deluge
Function:
- list zd_fetch_ticket(string data)
- {
- queryValue = {"cf_incident_key":"$data"};
- response = zoho.desk.searchRecords(658229032,"tickets",{"cf":queryValue});
- return response;
- }
Based on the
post: tried options still didn't work. posted changes and exception below for reference.
- response = zoho.desk.searchRecords(deskOrgId,"tickets",{"cf":"cf_incident_key:data"});
- Argument type mismatch -Found '{"errorCode":"UNPROCESSABLE_ENTITY","message":"The value passed for the 'cf' parameter is invalid."}'
- but Expected 'LIST' at line number 7. Resolve the errors and try executing it again
- response = zoho.desk.searchRecords(deskOrgId,"tickets",{"customField1":"cf_incident_key:data"});
- Argument type mismatch -Found '{}' but Expected 'LIST' at line number 7. Resolve the errors and try executing it again
- zoho.desk.searchRecords(deskOrgId, "tickets", {"customField1": "cf_incident_key:${data}"});
- Argument type mismatch -Found '{}' but Expected 'LIST' at line number 7. Resolve the errors and try executing it again
- zoho.desk.searchRecords(deskOrgId, "tickets", {"cf": "cf_incident_key:${data}"});
- Argument type mismatch -Found '{"errorCode":"UNPROCESSABLE_ENTITY","message":"The value passed for the 'cf' parameter is invalid."}' but Expected 'LIST' at line number 7. Resolve the errors and try executing it again
- zoho.desk.searchRecords(deskOrgId, "tickets", {"cf": {"cf_incident_key:${data}"}});
Thanks