Zoho Flow to Zoho CRM says "Invalid input for Phone. The expected input type is phone."

Zoho Flow to Zoho CRM says "Invalid input for Phone. The expected input type is phone."

Hi everyone, I created a webhook to pass data from LinkedIn Sales navigator to ZOHO FLOW.

Here the simple FLOW




In the image you can see the JASON, where the phone number is passed with the suffix "MOBILE:" which I think creates problems for ZOHO CRM.






Here the error in the Flow to CRM





I read another post (link here) where it was recommended to use this syntax to clean up parts of JASON:

  1. string convertJSONArrayToString1(string jsonArray)
  2. {
  3. info jsonArray;
  4. resultStr = jsonArray.remove("[").remove("]").remove("\"");
  5. return resultStr;
  6. }


How can I remove the word "MOBILE:" and pass the phone number to ZOHO CRM?

I tried to write the following code but I don't know where to put it in the sequence of ZOHO FLOW

  1. string convertJSONArrayToString1(string jsonArray)
  2. {
  3. info jsonArray;
  4. resultStr = jsonArray.remove("MOBILE:");
  5. return resultStr;
  6. }

Any suggestion?