How to attach document in TaskNote ?
Hello , I want to attach document in tasknote as well as want to get attached document with tasknote in zoho projects via API with PHP . I am using this For add TaskNote $url ="https://projects.zoho.com/portal/".PORTAL."/api/private/json/task/addnotes?apikey=".API_KEY."&ticket=".$this->ticket; For get TaskNote $url ="https://projects.zoho.com/portal/".PORTAL."/api/private/json/task/getnotes?apikey=".API_KEY."&ticket=".$this->ticket; Please help me. Thanks !
Problem in saving attached image with task in ZOHO PROJECT API for PHP.
Hello , I am using zoho project API i my PHP project . I got full download path like "https://projects.zoho.com/portal/jigpatel/saveAttachment/New_Changes.png?file=ac27703bbe794cae5fe2adf332234549512ea65808268c0b363ac14d75338fa8" but it can't download without login. In my application i need to download all images first to my server. so,can any one done this before in PHP ? Please help me to solve out this. Thanks !
Adding new Task - API dont take the date
Hello guys, i have implemented the zoho api in my java program. My Problem is adding the taskdate and the duration over the my program. date format is date MM-dd-yyyy and the duration is only integer, right? My program add the tasks, but without Startdate and the duration. Can someone help me? By the way, adding milestones with this date format work correctly. snapshot controller: public String addTask(String todotask, String taskdate,String taskduration,String percentcomplete,String priority){ String
User email via api
Is there any way to get all users of a project with user's email by api?
Zoho CRM - Zoho Projects
According the the user guide, you can associate a Zoho Project with an Account, Contact or Potential record in Zoho CRM. How come it's not possible to associate a record with a SalesOrder? Here's an example scenario: Lets assume I'm an SEO consultant offering several packages. Customer chooses a package (in the CRM I attach a new Sales Order to my customer's CRM account record) Now I need to manage the SEO process using Zoho Projects. Using this scenario, Wouldn't it make sense for me to be able
About zoho api
we can't find all user time sheet by using manager authtoken we are abel only particular user's authtoken and get result for particular user and project i want all user time sheet using admin or manager authtoken.only single request, if any one knows pls help me.
Changes in project api?
Hi, have there recently been changes in the api? My http request does not work anymore at the point were I insert new milestones. It worked before however and I can't figure out why and what I need to change at my code. If I use the html forms it works. Thank you for any suggestions. Olaf ----- HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod( "POST" ); connection.setDoInput( true ); connection.setDoOutput( true
Add new document using API in java
I'm using java client to upload new document. I'm using following code. MultipartEntity entity = new MultipartEntity(); entity.addPart("authtoken", new StringBody(authToken)); entity.addPart("projId", new StringBody(projectId)); entity.addPart("docname", new StringBody(docName)); entity.addPart("folderid", new StringBody(folderId)); entity.addPart("tags", new StringBody(tag)); ByteArrayBody bab = new
Can I create a New User?
We've a requirement to create new user and assign that user to existing project. Do we've this facility in Zoho Projects?
Zoho Project: New vs Old
Dear Zoho Team, I've been using zoho projects since August 2012 and has been promoting it among the multiple teams I work with as well as partners and friends. It use to be very simple, quick and fast. After you have upgraded, I tried to be pacient and get used to the new version, however, now I'm thinking seriously of looking for a new tool provider. Here are few of the things that really annoy me in the new version: Task Lists: with slow connection, I need to refresh the page any times in order
Do DELUGE scripts run in Zoho Projects
Working in Projects, we're wanting to have an automatic scheduling rule for start and due dates of specific tasks, based upon the due date of our "master" task. Is there a way to create this rule with CREATOR? Thanks, Davey
Task subtasks
Hello there, So far enjoying the API and everything seems to be working quite well! My only issue so far is Sub-tasks. I cant seem to be able to identify the hierarchy of tasks, is there a way to do that? My other idea was to somehow store data in Task's comment section, however that information doesnt show up in task's info as well. Any help is appreciated.
Getting User roles from zoho projects api
Can we get the all users with roles assigned for whole portal through api ? Help in this ....
How do I update the status of a bug?
The bugupdate method does not appear to support setting the statusid field. How would I set that field via the Bug API?
How do I get access to the Description of a bug?
Neither getprojbugs nor getbuginfo returns the bug description. How do I get the description for a bug?
Bug API documentation for "How to get list of all bug severity values in a project?" is incorrect
Documentation is the same as for getting project statuses.
How do I access the attachments of a bug?
Bug API = GREAT! Now, how do get access to the attachments associated with a bug? Will you also provide a way to download the attachments. Thanks
Can not create a forum message (debug trace included)!
Here is the HTTP level trace of what my httpclient is sending to your server. As far as I can tell all required fields are being sent. Why is Zoho server responding with 500 Internal Server Error? Please help! 2011/05/31 20:02:27:970 PDT [DEBUG] wire - >> "POST /portal/yoxel/api/private/xml/message/add?apikey=a<apikey>&ticket=<ticket> HTTP/1.1[EOL]" 2011/05/31 20:02:27:970 PDT [DEBUG] wire - >> "Accept: application/xml,application/xhtml+xml,text/html,text/plain[EOL]" 2011/05/31 20:02:27:970 PDT [DEBUG]
How do I access a Bug via the Projects API?
What is the specific way that I can query for all the bugs in a specific project? What would the response XML look like?
Is there an API for creating Zoho Projects Bugs?
I don't see any documentation for submitting bugs into Zoho Projects - http://www.zoho.com/projects/developers/zohoprojectsapi.html. Is this feature available?
Access to Bugs via Projects API
How do a get access to the bugs created under a project via the API? What does the response XML look like?
Remove Task Start Date via Zoho Projects API
Is it possible to remove/unset a Tasks Start Date via the Zoho Projects API I've tried to pass in an empty start date, duration of 0 but the Start date remains unchanged. Steve.
Zoho Project intranet integration
What is best way to achieve single sign on integration with Zoho Project? I want to avoid having the user sign on to the intranet and then have to sign on to Project
Problem in adding task list through API
Is milestone id is necessary to add the task list through API? If i add tasklist from site it not asking for it.
Odesk Integration with log hours in Zoho Projects
It would be really cool if the Zoho Projects would integrate with Odesk for a couple of things. 1. That we can create contractor users right out of ODesk and the ability to have the hours that the contractor logs in Odesk automatically update the Zoho projects hours log.
How to get all not completed Tasks?
Hi, I'm using the API to extract all tasks that are not completed. However, the function of the API is not able to retrieve only the "not completed" tasks. The API retrieves every Task. How to add some filters into the URL? I'm following the official documentation for using this function : http://www.zoho.com/projects/developers/tasklists-api.html#5. However, the documentation doesn't speak about such filter for having only the "not completed" tasks. Could you help me? Tanks
Incorrect Task List API documentation
FYI Under the parameter section for Getting All Task Lists it lists "projid" as a required parameter. http://www.zoho.com/projects/developers/tasklists-api.html#2 Passing in this parameter will give you a "Missing Input Parameter". The correct parameter should be "projId". Hopefully this will save others from wasting their time!
Inconsistent data/time format used in response xml
Can someone explain why different date/time formats are used throughout the API? We already try two (MM-dd-yyyy hh:mm and MM/dd/yyyy hh:mm) when parsing various xml responses and now I am encountering '29 May 2012 hh:mm'. Is there a way for us to control which format is returned to us? Why do the formats keep changing and not comply with the API doc, i.e. <proj_created>2009-10-20 17:08</proj_created> Working with this API is a real head ache. Please advise.
Zoho Project API - Adding Tasklist from Tasklist Templates
Is it possible to add a tasklist from the tasklist templates via API? If so, can you give the method reference? Thanks David
Trouble updating a task
I am trying to update a task using the API and running into problems. I tried doing a POST to https://projects.zoho.com/portal/fusionroom/api/private/json/task/update?apikey=XXX&ticket=bba3388115f69a58127bcf5efa391d69 With the following data fields: projId = 14f40c3524eb60cd9ca2f4280518ee3b6755b1c1035e80e0 personresponsible = 6d92ff6934a96d44 todotask = Test Task taskdate = 01-02-2013 taskid = 14f40c3524eb60cd2603ebabba02c65d2a292998f290dfc5 duration = 7 priority = None pcomplete = 0 I always recieve
Create Task with multiple owner
Hi, I'd like to create a task with multiple person responsible. How it's possible to write that in the request? If I follow the documentation : Owner<input type="text" name="personresponsible" value="">(loginid/userid) Basically, I write in my request that : personresponsible:3456768GHJ However, If I want to add another persone, what the separator that I need to use?comma? personresponsible:3456768GHJ,789078HFJS Don't work Thanks for you help
API always return 6500 - Internal Server Error while processing this request
I've register and get both API and ticket id. However, any calls from get login id to projects task list, I got same error: <response uri="/api/private/xml/dashbs/getlogin"><error><code>6500</code><message>Internal Server Error while processing this request</message></error></response> Is there anyone can help ? I've tried to change the api and ticket id to a wrong one and the system return a wrong api and ticket id message with this one. So, it should be the API and ticket id.
project API's
I am having trouble getting just about all the project api calls to work properly. They all are returning various errors for me. I know I have valid apiKeys and Tickets because I can get the "user login-id" ID to return the correct information. Here's me echo'ing the example code(php): echo"<form method='post' action='https://projects.zoho.com/api/private/json/dashbs/getportals?apikey=$apiKey&ticket=".ticket()."'> <input type='submit' value='Get Portals' ></form>";and here's the server response:
API - Logout is not working
I am seeing 'active sessions' even after issuing logout call. Following are the results of my logout call. # #Mon Jan 09 04:33:26 PST 2012 RESULT=TRUE I am using CURL to make a. login b. do some action c. logout. But I am seeing the active sessions even after logout. This is leading to maximum concurrent connection problem after a limit. I cannot reuse session as I am writing a stateless application.
Format of Notes in Timesheet entry
Hello I am trying to import timesheets from an existing program. I've been using: http://www.zoho.com/projects/developers/timesheet-api.html#2 I have a working example with a simple lognotes field. Something like: "Here is a note" works. What doesn't work is something more complicated like: -Here is a note ~some more stuff [blah] blah blah blah ~notes notes notes -notes notes notes The above returns a 500 server error after request. The above will work in the timesheet input page: https://projects.zoho.com/portal/{MYPORTAL}#mytimesheet
Surround task_notes' html with CDATA
I believe HTML in task notes need to be surrounded with CDATA otherwise XML parsers have trouble with the html properties: [org.xml.sax.SAXParseException: The entity "nbsp" was referenced, but not declared.] <TaskNoteDetail> <task_notes> Exactly what we needed.¬ Thank you so much Katy! ... Task Note Added </task_notes> ... </TaskNoteDetail>
Get User Login Id API call
On your website under http://www.zoho.com/projects/developers/projects-api.html#2 How to Get User Login Id ?The URL is listed as: https://projects.zoho.com/portal/{PortalName}/api/private/xml/dashbs/getlogin However when I try it. It gives General Error 6500. I accidentally tried changing the URL to https://projects.zoho.com/api/private/xml/dashbs/getlogin And it seems to work and returns the correct result. Is this the problem in your documention or is this something wrong how I am trying to access
Start/End Dates are not returned.
Hello, Our user has a bunch of tasks in their Zoho Projects portal that have start/end dates but when we pull them via the API those dates are not included! Can someone check and explain what is going on? Let me know if this info is enough to find the task in your database: <task_id>a64f4c091bac27f83c95a49cd14aa395e31670b709981ded</task_id> <task_title><![CDATA[Create Data Dictionary]]></task_title> <tasklist_id>a64f4c091bac27f83c95a49cd14aa395372ac796d45c2a32</tasklist_id> <tasklist_title><![CDATA[Implementation
MM/dd/yyyy vs. MM-dd-yyyy
I noticed that getProjectTasks(new-format) returns dates in MM/dd/yyyy format and getTaskById(new-format) returns dates as MM-dd-yyyy. quite inconvenient when parsing the xml.
What is the meaning of the "status" parameter in getProjectTasks?
I tried both status=completed and status=uncompleted and the result is not what I expect: Both results contain iscompleted=true and iscompleted=false tasks. Can you explain better this and other parameters of the getProjectTasks (new-format) method?
Next Page