Hi,
I'm trying to write an application which imports contact data into another application.
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.
This is my sample code in Vb.Net:
- Private Shared Function GetData() As String
- Const baseUrl As String = "https://crm.zoho.com/crm/private/json/Contacts/getRecords"
- Dim client = New RestClient(baseUrl)
- Dim request = New RestRequest(Method.GET)
- request.AddParameter("authtoken", "9b249b70775d288e810cd4c1ee140d49")
- request.AddParameter("scope", "crmapi")
- request.AddParameter("fromIndex", "0")
- request.AddParameter("toIndex", "1000")
- request.AddParameter("version", "2")
- Dim response = client.Execute(request)
- If response.StatusCode <> HttpStatusCode.OK Then
- Throw response.ErrorException
- End If
- Return response.Content
- End Function
As of now I'm using a trial account on Zoho.
Any help on this issue is appreciated.