Unable to process your request. Please verify whether you have entered proper method name,parameter and parameter values.

Unable to process your request. Please verify whether you have entered proper method name,parameter and parameter values.

Hi,

I'm trying to write an application which imports contact data into another application.

I'm using the " https://crm.zoho.com/crm/private/json/Contacts/getRecords" method for this.

In the beginning I was able to get the data out of Zoho however suddenly Zoho API started to return this error message:

"Unable to process your request. Please verify whether you have entered proper method name,parameter and parameter values."

I'm pretty sure that I have not changed anything in my code.  The only things that changed were authtoken. I tried several authtokens because I thought the problem would be related to that.

In my first attempts I used https://github.com/deveel/zohocrmsharp as a Zoho Crm .Net client with success. However, later I tried my own code hoping to get succeeded.

This is my sample code in Vb.Net:

  1.     Private Shared Function GetData() As String

  2.         Const baseUrl As String = "https://crm.zoho.com/crm/private/json/Contacts/getRecords"

  3.         Dim client = New RestClient(baseUrl)
  4.         Dim request = New RestRequest(Method.GET)
  5.         request.AddParameter("authtoken", "9b249b70775d288e810cd4c1ee140d49")
  6.         request.AddParameter("scope", "crmapi")
  7.         request.AddParameter("fromIndex", "0")
  8.         request.AddParameter("toIndex", "1000")
  9.         request.AddParameter("version", "2")

  10.         Dim response = client.Execute(request)

  11.         If response.StatusCode <> HttpStatusCode.OK Then
  12.             Throw response.ErrorException
  13.         End If

  14.         Return response.Content
  15.     End Function
  16.  
As of now I'm using a trial account on Zoho. 

Any help on this issue is appreciated.