get a list of all accounts zoho connector

225 views
Skip to first unread message

ingen...@bammtech.cl

unread,
Feb 19, 2015, 1:41:55 PM2/19/15
to suppor...@runmyprocess.com
I need to know why the “Get a list of all accounts” connector not bring all my accounts (266 accounts), only a few of them(19). Attached an screenshot.

I also would like to know if it is possible to filter the information of my accounts with parameters that are not native to ZOHO but according to which I made to give a category to my accounts.
cuentas.jpeg
cuentas 2.jpeg

Sushma Padidela

unread,
Feb 19, 2015, 8:05:31 PM2/19/15
to suppor...@runmyprocess.com, Grupo Ingenieria
Hi,

The Zoho CRM APi's allows only to fetch 200 records at a time. If you have more records then you need to loop the connector activity in the process. 

Regarding getting 20 accounts, might be when you set the fromIndex and toIndex did you select something like 1 and 20?

Yes, if you have some filters on Accounts in your Zoho CRM then we can retrieve only those filtered accounts instead of all the Accounts.

Please see below example URL end point for Accounts filtered by some criteria and the view is named as "Accounts owned by Me"

json/Accounts/getRecords?newFormat=2&authtoken=xxxxxx&scope=crmapi&fromIndex=${s_index}&toIndex=${e_index}&sortColumnString=${"Company"?url}&sortOrderString=desc&version=2&&cvName=${"Accounts owned by Me"?url}

"Accounts owned by Me" should be URL encoded as it contains spaces by using ?url like above.

Attached screenshot of the same. You just need to input the fromIndex and toIndex values to the connector.

Thanks,
Sushma
Fujitsu RunMyProcess



On Thu, Feb 19, 2015 at 10:41 AM, <ingen...@bammtech.cl> wrote:
I need to know why the “Get a list of all accounts” connector not bring all my accounts (266 accounts), only a few of them(19). Attached an screenshot.

I also would like to know if it is possible to filter the information of my accounts with parameters that are not native to ZOHO but according to which I made to give a category to my accounts.

--
Fujitsu - RunMyProcess
---
You received this message because you are subscribed to the Google Groups "RunMyProcess Support Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supportforum...@runmyprocess.com.
To post to this group, send email to suppor...@runmyprocess.com.
Visit this group at http://groups.google.com/a/runmyprocess.com/group/supportforum/.
To view this discussion on the web visit https://groups.google.com/a/runmyprocess.com/d/msgid/supportforum/44d02220-bc76-4cc6-8377-423f310560ea%40runmyprocess.com.
For more options, visit https://groups.google.com/a/runmyprocess.com/d/optout.

2015-02-19 17_11_40-RunMyProcess.png

Sushma Padidela

unread,
Feb 20, 2015, 8:06:36 PM2/20/15
to Grupo Ingenieria, suppor...@runmyprocess.com
Hi,

You can check the loop on connector activity and write some while condition which suits or else you can create loop like process as attached screenshots(FYI,this is to get leads).Please refer to them. 

To your question related to "Canales" category, i hope all the names in the dropdown are filtered on some criteria. 

Like i said in the previous email write the Conenctor URL something like below and try to test it.


json/Accounts/getRecords?newFormat=2&authtoken=xxxxxx&scope=crmapi&fromIndex=${s_index}&toIndex=${e_index}&sortOrderString=desc&version=2&&cvName=${"Canales"?url}



Thanks,
Sushma
Fujitsu RunMyProcess

On Fri, Feb 20, 2015 at 7:18 AM, Grupo Ingenieria <ingen...@bammtech.cl> wrote:
Thank you for answer me. Works for me because it brings to me the 200 accounts what is the limit of the connector But I do not understood the loop. 
I saw the documentation and mentions that I need to put a condition and in that part I do not understood very well, so, I'll appreciate if you could help me with that. About the filter, in your example,can you help me to understand that because I need to bring accounts that are in the "Canales" category as shown in
the screenshot .
Imágenes integradas 2

from now thank you very much.
2015-02-20 16_49_54-RunMyProcess.png
2015-02-20 16_50_17-RunMyProcess.png
2015-02-20 16_50_36-RunMyProcess.png
2015-02-20 16_51_39-RunMyProcess.png
2015-02-20 16_52_13-RunMyProcess.png

Sushma Padidela

unread,
Feb 24, 2015, 1:38:47 PM2/24/15
to Grupo Ingenieria, suppor...@runmyprocess.com
Hi,


Can you remove the "Canales" : ${"Canales"} variable  from Input variables, you do not need to send it as an input variable as "Canales" is already a hardcoded category.

Please try to test it now.


Thanks,
Sushma

On Tue, Feb 24, 2015 at 10:11 AM, Grupo Ingenieria <ingen...@bammtech.cl> wrote:
oh thanks miss Sushma, but I cant filter only the counts on the "canales" category even using "version=2&&cvName=${"Canales"?url}". that bring it to me the number of accounts in the e_index. Which may be the error?

Sushma Padidela

unread,
Feb 24, 2015, 3:17:56 PM2/24/15
to Grupo Ingenieria, suppor...@runmyprocess.com
Hi,


Looks like Zoho CRM APi's have changed. I am not able to find the related API to get filtered accounts(these are called Custom List Views) in the Zoho API documentation . The API URL which i gave you used to work sometime back as i have tested it myself.

Can you try to remove cvName and just write Name in the URL.

json/Accounts/getRecords?newFormat=2&authtoken=xxxxxx&scope=crmapi&fromIndex=${s_index}&toIndex=${e_index}&sortOrderString=desc&version=2&&Name=${"Canales"?url}

If that doesn't work you can contact Zoho support to provide exact API to get Accounts based on Custom List View.


Thanks,
Sushma
Fujitsu RunMyProcess




On Tue, Feb 24, 2015 at 10:42 AM, Grupo Ingenieria <ingen...@bammtech.cl> wrote:
Hi,

I do that but still been the same.  :/

Sushma Padidela

unread,
Feb 27, 2015, 7:01:44 PM2/27/15
to Grupo Ingenieria, suppor...@runmyprocess.com
Hi,

Good to know that your issue has been resolved :)
Can you share with us which approach worked, replacing cvName with Name or any other? 
It will helpful to others also, paste the full URL which is working.

Thanks,
Sushma
Fujitsu RunMyProcess Support

On Thu, Feb 26, 2015 at 7:03 AM, Grupo Ingenieria <ingen...@bammtech.cl> wrote:
thank you miss Sushma, for all your time and help, it works for me the connector :)
Reply all
Reply to author
Forward
0 new messages