Copying data from WorkTime to Zoho
Hello! I want to try Zoho Project Management, but I have a couple of questions: 1. Is it possible to transfer data from other software? I'm talking about Jira/WorkTime. 2. If yes, in what format do I need to do it? XML? .MPP? .MPX? Thank you
Self Client, Zoho Projects, and User-level authentication
Hey everyone, I'm new to this style of development, and have some questions. I'm looking to develop a C# application that hooks into a company's Zoho Projects to read/write/do whatever. I have a Self Client setup, and the OAuth2 working just fine. What I'm looking to achieve is require the users of the application to authenticate or login using their Zoho account against the company's project permissions. I may be poorly wording it, so for example. - I launch the application, and generate the application's
Error code 6831 when trying to get time logs
Trying to use the API in Python. Passing this code: rest_url = 'https://projectsapi.zoho.com/restapi/portal/' headers = {'Authorization': 'Zoho-oauthtoken ' + access_token} params = {'index': 3, 'range': 1, 'approval_status': 'all', 'users_list': '[USER_ID]', 'view_type': 'week', 'date': '08-01-2020', 'bill_status': 'All', 'component_type': 'task'} r = requests.get(rest_url + '[PORTAL_ID]/logs', headers=headers) r.json() Results in the following error {'error': {'code': 6831, 'message':
On event of create Zoho project make external restservice call
Hi , I am all new to zoho project. What I want to do is whenever user create project or tasklist in ZOHO project, on the create action I want to make external rest service call. How can I do this.
ZOHO Rest API, how to get Tasklist for a task?
Is there any way to get tasklist for a task (by passing task id) using Rest API. im binding time log but in time log im only getting task,notes and other details. i have to bind tasklist also. any one please help me on this. thank u.
Create new Zoho Projects groups through Deluge
Hi, I'm currently writing a custom function that transfers some data from a particular Zoho CRM deal to its respective project in Zoho Projects. The project in Projects is updated if it already exists, else it is created. I'm using APIs to do so and it's working great so far. However, I can't find an api call syntax which allows me to create new Projects groups programmatically; I'd like my Projects groups to be named after a particular field in CRM, which is the same in deals that are related.
What is the scope for Project Statuses via API in Zoho Projects?
I do I change the project status via API? I think the URL is https://projectsapi.zoho.com/restapi/portal/[PORTAL]/projects/[PROJECTID]/statuses/ But I'm not sure what scope to use. I would like to update and get the status.
How to get Task Custom Fields Ids
Hi All, I hope you all are doing well!!! I am creating projects and Tasks in ZOHO from an external platform. I have created a custom field in the task. And now I want to set that Field value while creating new task using API . So I want id of the custom field. Where I can get Task custom field id. Which API should I use to get id of Task custom field? and again can I see the custom field id on Zoho project UI.??
Project Custom Field API
Hello, I can't find where i'm able to retrieve the projects custom fields informations with the API. What is the GET function i should use?
Zoho>>Project>> logs API not working
URL:https://projectsapi.zoho.in/restapi/portal/c******d/projects/232********873/logs/ Method : GET Headers: Authorization:Bearer 1000.1****b1 users_list:6****0 view_type:month date:05-01-2020 bill_status:Billable component_type:general Response: { "error": { "code": 6831, "message": "Input Parameter Missing" } } ///---------------------------------------- Also tried: Method: GET URL:https://projectsapi.zoho.in/restapi/portal/c******/projects/21*******23/logs/?authtoken=Bearer
Projects API timelogs
Hello, I'm moving my platform that uses Zoho Projects API no the new Zoho Projects REST API and i'm facing some problems getting the timelogs. What is view_type and date? Is there any way of getting my all time logs of the given project without specifying a particular day? My intention is to get all time logs of all days.
How Can I Sync or Setup Holiday or PTO of users on ZOHO Projects
How Can I Sync or Setup Holiday or PTO of users on ZOHO Projects 1. User of our zoho project app should be able set his vacation time on their space and during that time task / project should not assigned to them. I know the feature is not available at the moment but we would like to know if it is in plan. If yes then when it is going to be released. Thank you@ mahendra [at] gkblabs [dot] com adi [at] gkblabs [dot] com 408.757.0199 FREE
How do I get the tasks which associated with issue?
My bug have a task associated in Zoho Projects. I wrote the custom function with this code: response= zoho.projects.getRecordById("xxx", xxxxx ,"Bugs", xxxxx); I got the bug response information but it did not included any tasks which were associated. How do I write the code to get the bug with task associated? I read the help from : https://www.zoho.com/deluge/help/projects-tasks.html https://www.zoho.com/projects/help/rest-api/bugs-api.html
Get Timesheet Logsfor AllProjects and All dates
Hi Team, Currently i am able to get the log of a single project for a given month using below browser call. https://projectsapi.zoho.com/restapi/portal/[Portalid]/projects/[projectid]/logs/?authtoken=[auttoken]&users_list=all&view_type=month&date=12-12-2016&bill_status=All&component_type=task But I need to export the time sheet logs for all projects up to current date with a single request using your api. Kindly let me know the id for Allprojects and the way to specify the date range Thanks
Zoho Projects - REST API Wrappers
If you are using our REST API, you must check out our wrappers to make it even more simple. You simply need to download the wrapper of your choice, drop into your project and start working. You need not worry about the parameters and interfacing details, everything is already bundled in our wrappers. Zoho Projects has official API wrappers for the following languages: For Java https://github.com/zoho/projects-java-wrappers For ObjectiveC https://github.com/zoho/projects-objectivec-wrappers For
Accessing a Custom Field when creating a Task with Zoho Projects API
We've created a custom field called Target Date through the Zoho Projects Portal, and are now trying to access that field with information I'm passing to it. First we thought just formatting it as a JSON string by hand would work, but it didn't so we looked into the structure more. When we get the project details of a task that already includes a Task Date, we get this structure: 'custom_fields' =>
array (size=1)
0 =>
array (size=3)
'column_name' => string 'UDF_DATE2'
Zoho account and API Zoho Project
Good afternoon, I am making an implementation of the Projects API, when I make the request for User Authorization Can I add the client's site as an authorized site in my Zoho account so that it does not ask me for authorization again?
Can't specify index and range for tasklogs.
I'm using the GET method of the Zoho Projects API to get the tasklogs of a specific task and I'm facing some trouble. It seems that tasklogs are not responsive to the "index" and "range" params, as its length is allways 99, no matter what values I pass to these params. Please kindly let me know how can tasklogs "range" param can be set. For more clarification, bellow you can find the steps I followed in python: import pandas as pd import requests import json url = "https://projectsapi.zoho.com/restapi/portal/+portal_id+
Unable to set Task Status using Zoho Project REST API
I went through all the documentation for the API and did many tests. I am able to GET the task's current status but i would like to be able to set the status using the API on CREATION or on UPDATE but can't find any way ?? Is there a trick i missed or can you tell me if there will be a new version of the API soon because it's lacking many functionnality like being able to read the "Start after X hours" of the project templates. Thank you.
Why are id and id_string different?
In the ZoHo Projects API, the returns often contain two fields, id and id_string Often they are the same, but on some records they are different, and experience has taught us that the id_string value is the one that will work in further API calls. I'd like to know what is the difference between the two fields, and what are their intended uses? This can be quite annoying -- for example, calling /portal/[PORTALID]/mytasks/ will return a list of tasks, including the task's project id. Unfortunately,
404 error when creating a timesheet in ZoHo Projects
I'm trying to create a time log for a task in ZoHo Projects (aka Add Time Log for a Task). 1. I have create access (oAuth sets authority to ZohoProjects.timesheets.ALL) 2. I am using php and cURL 3. I am sending a POST request to https://projectsapi.zoho.eu/restapi/portal/200XXXXXXXX/projects/XXXXX000000053053/tasks/XXXXX000000196860/logs/ (I've replaced the actual IDs with some Xs) 4. The http header includes my access token -- this is all in order, as I can use it to make other requests 5. The
How can you get the current user name with the Portal API
When using the Portal API, you log on using oAuth. However, the process only returns the currently logged-on user ID. Is there any way I can use this to recover the current user's name and email?
Google Drive integration to Zoho Projects
The Dropbox integration is awesome, but it would be really nice if we could do the SAME exact thing that you have done with Dropbox with Google Drive. This would keep some of us from having to pay for two seperate cloud storages.
Not getting TimeSheet logs for a portal.
When I try to get timesheet for my portal irrespective of any project, it is showing wrong URL. I get : {"error":{"code":6891,"message":"Given URL is wrong"}
SocketError: Failed to open TCP connection
Hello everyone, I have the following problem and I kindly ask anyone to help with. When I tried to make a request to Zoho API by the following endpoints: - users (https://www.zoho.com/projects/help/rest-api/users-api.html) - tasks (https://www.zoho.com/projects/help/rest-api/tasks-api.html) - bugs (https://www.zoho.com/projects/help/rest-api/bugs-api.html) - projects (https://www.zoho.com/projects/help/rest-api/projects-api.html) I’ve got this error (I think it is related with SSL): SocketError:
Stuck getting refresh token
string url = "refresh_token=" + rtoken; url += "&client_id=XXX; url += "&client_secret=XXX"; url += "&redirect_uri=https://portal.client360services.com/zoho/auth.aspx"; url += "&grant_type=refresh_token"; WebRequest request = (HttpWebRequest)WebRequest.Create("https://accounts.zoho.com/oauth/v2/token"); byte[] data = Encoding.ASCII.GetBytes(url); request.Method = "POST"; request.ContentType = "application/x-www-form-urlencoded";
Problem with Projects API and get projects
Hi, I have a problem with rest api. I want to get projects calling api and this worked good weeks ago, but now it don’t work. If I use Postman, it work good and I get all projects, but when I use my vb.net code it say “Error in remote server: (403) Forbidden” I tried with Authtoken and with oauth2 but the result is the same. How can I fix it? The code worked good weeks ago. Best regards,
How do I get connected user information for OAuth2 Zoho Projects?
Hi, I need to verify the role of the user connected (by OAuth2) to my third party app , but I don't which URL to poke to obtain that. I know I can get all users with : https://projects.zoho.com/restapi/portal/<redacted>/projects/<redacted>/users/ But what URL would give me ONLY the information of the connected user?
Feature Request: Airtable Integration
I am currently in a trial with a few Zoho projects and I love how it work. I will probably even get Zoho One for my team because I need most of your Apps. But there is one thing that's a deal breaker for me: no integration with Airtable. Unfortunately we are very closely tied up to Airtable. We use it for all kinds of purposes and our whole database is there. I can't see any way to migrate to Zoho simply because there are feautres that Airtable offers to use and Zoho Spreadsheet doesn't. BUT, if
Zoho Portal Api not working
Hi Team, I am getting 403 error when calling below api with correct auth token https://projectsapi.zoho.com/restapi/portals/?authtoken=xxxxxxx It was working till last week. Please suggest what changes needs to be done in the api request Thanks
Gitea integration
Hi. Zoho Bugtracker/Projects integrated with Bitbucket and Github. Can you integrate it with Gitea? https://gitea.io/ Gitea already support Webhooks https://docs.gitea.io/en-us/webhooks/
Is it possible to create pages using API?
Hello! Can I create pages (wiki) for projects? I couldn't find endpoints for this task.
Not able to fetch log for "Non Billable" tasks through ZOHO API even after passing the input parameter - "bill_status":'All' or "bill_status":'Non Billable'
Using ZOHO Projects API to get the Timesheet data, I can get only log for Billable tasks and not Non Billable tasks even when there are Non Billable tasks logged by the user. params = {"users_list": values, "view_type":'month', "date":'12-01-2018', "bill_status":'All', "component_type":'task'} I have set the bill_status to all but the results are showing only Billable tasks. Please look into this at your earliest possible.
API for Zoho Bugtracker
Hi. Do you have the API for Zoho Bugtracker?
Gitea integration
Hi. Bugtracker integrated with Bitbucket and Github. Can you integrate it with Gitea? https://gitea.io/ Gitea already support Webhooks https://docs.gitea.io/en-us/webhooks/
Zoho Bugtracker API
Hi. Do you have the API for Zoho Bugtracker?
Zoho Project API - Comment post behalf of user from admin account
Hello, We're trying to integrate slack bot with Zoho API's. We wanted to make a feature where some one post there reply in slack then that reply comes and posted in particular task from that user. To achieve that add comment API should accepts user id or added by details. But right now its not accepting it. Can anyone help on this.
Is it possible to create users using API?
Hello! I was looking for possibility to add more users using Projects API. In docs described only 'Get All Users'
Impossible to move tasks from a tasklist through the API
Impossible to move tasks from a tasklist through the API. It worked two days ago ... what happened? I am using the following parameters according to your documentation: - ZohoProjects.tasks.UPDATE - tasklist_id I get the following error: "{ "error": { "code": 6500, "message": "General Error" } } " What can I do??
Delete an uploaded file
I had uploaded a document in document 's tab and I cannot delete it in order to upload a new version. Any idea?
Next Page