1

I am using zoho creator and I need to fetch records from zoho projects using api ( like zoho.books.getRecords(...) ) to liste all tasks.

I need somtjing like this :

response1 = zoho.books.getRecords("Invoices",organization_id,"cf_no_de_projet=" + no_projet);
Ayed Mohamed Amine
  • 587
  • 2
  • 10
  • 30

2 Answers2

3

This URL lists all projects in a portal (JSON):

https://projectsapi.zoho.com/restapi/portal/<PORTAL_ID>/projects/?authtoken=<YOUR_AUTHTOKEN>

You can run a GET request in Creator with the same parameters.

If you don't know the Portal ID, you can get a list of all available portals:

https://projectsapi.zoho.com/restapi/portals?authtoken=<YOUR_AUTHTOKEN>
shabdar
  • 371
  • 1
  • 8
1

There is no Internal API for ZOHO Project. you must be used External API. https://projectsapi.zoho.com/restapi/portal//projects/?authtoken=

  • How can I find my authtoken in Zoho Creator? Please let me know. – Newbie SQL Dec 09 '20 at 08:35
  • Hi, Please go to Account Setup->Extension->Connection->select Zoho Auth-> Select All Zoho Project Scope->used that Connection name in Invoke URL as connection name. - https://www.zoho.com/deluge/help/webhook/invokeurl-api-task.html – Sagar Gaikwad Dec 10 '20 at 09:13
  • Hi, Can you please help me with this issue? Link: https://stackoverflow.com/questions/65076554/how-to-export-data-from-zoho-expense-site-to-power-bi-desktop-using-the-zoho-cre – Newbie SQL Dec 10 '20 at 13:07