Asana is a very flexible online tool that people can use for Customer Relations Management, Project Management, Team Management, and even Blogging.
0
votes
2answers
23 views
Update URL in Asana returns nothing
When I use
https://app.asana.com/api/1.0/workspaces/workspace-id/tasks -d "name=this is a new task"
and then also using the POST method... I get a response, but nothing is created in asana...
...
0
votes
1answer
14 views
Connecting to asana using webrequests
I'm a hobbiest VB developer and have been tinkering with desktop apps for a while now. Hoever I'm a total noob when it comes to web development and things called 'Restful' API's (Is it supposed to ...
0
votes
2answers
46 views
Getting a ratio of completed tasks to total tasks in Asana
I'm creating a panel for Panic's StatusBoard to show projects from my workspace, with the ratio of completed tasks to total tasks.
I can do this currently, based on what I'm seeing in the API Docs, ...
0
votes
1answer
14 views
Asana API: How do I remove a parent from a subtask with the new setParent endpoint
According to the Asana API documentation it should be possible to remove a parent from a subtask, so the subtask becomes a normal task:
Creating a subtask is the same as a creating an normal task, ...
0
votes
1answer
23 views
Asana server returning error code 500 on OAuth 2 request with GTMOAuth 2
I'm using the GTMOAuth-2 library to implement an OAuth 2 Authorization Code Grant flow to the Asana API, but consistently getting back a server error 500. The GTMHTTPFetcher log is as follows ...
1
vote
1answer
49 views
400 Bad Request when adding utf-8 charset to POST request
I've build an API client based on Guzzle that since version 3.4.2 adds an utf-8 charset to the Content-Type header. With this header the Asana API returns a 400 Bad Request error, while without the ...
0
votes
1answer
16 views
Callbacks when events happen such as new comments or new tasks
Is there a way using the Asana API for my program to receive some sort of notification when items change or are added (such as new tasks, or comments)? I want to make a realtime app that integrates ...
1
vote
1answer
29 views
Asana API Cross-Domain Request Access Control Headers
I'm trying to make a GET request to the Asana API from the browser. Because this is a cross-domain request, the client first sends an OPTIONS request. I'm running into the same issue that was ...
0
votes
0answers
21 views
Asana StatusCode=404
Writing a wrapper class for Asana API in Salesforce APEX, encountering this status code for any 'valid' GET command sent:
HttpResponse[Status=Object Not Found, StatusCode=404]
Even with the ...
0
votes
1answer
39 views
Asana API ERROR Syntax Invalid Label
I tried to integrate Asana API in my HTML, CSS and Jquery Only projects. I get the response but i get Invalid Syntax error please guide what am doing wrong for using Client side available Features ...
1
vote
1answer
45 views
AsanaConnect oAuth Redirect URL with custom scheme
The account settings page for registering an app accepts just valid http:// url schemes. We would require a custom url scheme in order to redirect back to our iOS app. Is there currently a way to ...
1
vote
1answer
34 views
Posting task on a particular project via CURL
I seem to have got stuck trying to use the Asana API. I am trying to post a task on a particular project.
Here is what I am trying:
$api = 'myapikey';
$url = 'https://app.asana.com/api/1.0/tasks';
...
0
votes
2answers
47 views
response is giving error
I have following code to create a task in asana .
String data = "{" + " \"data\": {"
+ "\"workspace\":4661999437107,"
+ "\"name\": \"crmit solutions\","
+ "\"notes\": ...
-6
votes
1answer
68 views
The term “curl” what does it mean
in Asana developer guide each request mentioned the keyword "curl" what does it mean ?
If I want to send the same request to get all workspace in java/ javascript what will be request parameter.
...
0
votes
1answer
44 views
Asana :how can I get Worksapce id from asana
I am developing a small web application using java/javascript .
I want to query all the task associated with Asana for particular user .
I have gone through the API and i could find that as a request ...
0
votes
0answers
41 views
Can I add a Story to an Asana Project via the API?
According to the documentation at http://developer.asana.com/documentation/#stories, I should be able to create a Story for either a Task or a Project.
POST /tasks/task-id/stories
POST ...
0
votes
1answer
35 views
How to expose asana task creator?
I need to be able to expose who created a task in asana via the API. Currently I am only getting back who created comments on the task, who is currently assigned to the task, and who is following the ...
0
votes
0answers
52 views
Error when trying to Retrieve project PHP Asana Class
Am using this class to get projects and its task. Am getting the project successfully. But when trying to get the tasks its returns.
Error while trying to connect to Asana, response code: 400
...
0
votes
0answers
55 views
How do I logout from the asana API?
I am building a small desktop app for easier viewing of my asana tasks. I have 2 accounts. I want to be able to login to both at the same time using my app or at the least have the option of logging ...
1
vote
0answers
60 views
How can I view all tasks with no assignee and no project in Asana?
Especially if I don't know its name. Related question
0
votes
1answer
121 views
How do I move a task to a subtask Asana via the API
Is there a way to convert an existing task to a subtask of another task? It works with dragging and dropping I wanted to know how to do that via the API.
Thanks.
0
votes
1answer
106 views
How to create a new workspace in Asana?
I can create tasks in Asana using the Asana API (JAVA).
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.UsernamePasswordCredentials;
import ...
0
votes
0answers
33 views
Get archived tasks from asana
We are trying to get the tasks from Asana using the Asana API to create a customized dashboard. But we couldn't get archived tasks using the API.
Is there anyway to get all tasks including the ...
0
votes
0answers
23 views
Unexpected 401's on the Asana API
The Asana developer docs say that 401's occur when an invalid API token is provided. But I am getting 401's intermittently. That is: I repeatedly make the same request, using the same API key and ...
0
votes
1answer
52 views
Can I add comments with Asana API?
Can I add comments to task using Asana API?
I want to write hook to git in which after every local commit I would add comment to Asana and after every push I'd add comment with links to commits in ...
0
votes
1answer
52 views
How to query all subtasks with a tag at asana?
Is there straight forward way to query all subtasks with specific tag id, or I should iterate through all subtasks and check theirs tags?
0
votes
1answer
426 views
How to delete a user in asana from my workspace?
I had added one of my client in workspace, now I want to delete him from my workspace, how do I go about it ?
0
votes
1answer
50 views
Access Inbox items from the API?
Is there a way to access the items in a workspace's inbox via the API? I'm primarily interested in the unread count, but could make good use out of any unhidden items as well.
1
vote
1answer
64 views
How to fetch attachments in a task using Asana API?
I found no API to fetch these values. Please tell how can I?
Thanks
0
votes
2answers
76 views
How to get user picture using Asana API?
I am trying to display user picture using Asana API, nut the /users/id service just return id, mail, name, workspaces. How can I?
Thanks
0
votes
0answers
24 views
Adding a tag doesn't update the Modified At Date/Time field
When you add a tag to a task, it doesn't change the Modified At field on the task. I am using the Modified At field to see if a task has changed, so that I know whether to sync it to the task in ...
0
votes
1answer
156 views
Asana API roadmap - getting completed tasks (including archived)
Do you plan to add possibility to retrieve (via API) all tasks from project including those which are archived?
1
vote
1answer
271 views
HTTP 1.1 400 Bad Request - Android client Asana
I am just playing around with the Asana API.
So whenever I make a request, I am always getting back Bad Request error.
So what I got is this:
public class Asana {
private static String ...
0
votes
0answers
72 views
Will Localization Ever be Available? [closed]
I work in a mixed English and Japanese workplace, and because most of the people here are Japanese speakers, we usually default to native Japanese tools. The problem is that the Japanese tools are all ...
2
votes
1answer
46 views
“No matching route for request” message when updating task using Asana API
I am trying to update a task in Asana using the Asana API. I can create the task successfully but when I update it I get the message "No matching route for request".
I am doing an PUT to the URL ...
0
votes
2answers
248 views
POST data to Asana API in C#
I am trying to use the Asana API to update and add data to Asana. How do I do it in C#?
I am getting data fine - sample code below:
string apiKey = "xxxxxxxxx.xxxxxxxxxxxxxxxxxxxxxxxxx";
var req = ...
1
vote
1answer
202 views
How to archive a subtask in Asana?
How can I archieve a subtask in Asana? It is easy to archive the task but I couldn't find a way to archive a subtask.
1
vote
3answers
148 views
Properly handle Asana API rate limit in perl
Please accept my apology if this is something terribly obvious that I am simply missing. I have a perl script that hits the Asana restful API at a burst rate of a bit more than 100 calls per minute. ...
1
vote
0answers
73 views
Asana API error - unsupported browser when using an ios client
I am sending an API call to Asana from an iOS client and am getting an HTML page with the title: Asana - Unsupported Browser which tells me something is wrong with the way I make the call.
My API ...
1
vote
1answer
42 views
Unable to set due_on=null
I'm trying to remove a due date from a task using the following request:
curl --request PUT -u <KEY>: https://app.asana.com/api/1.0/tasks/<TASKID> -d "due_on=null"
and receive
...
0
votes
1answer
55 views
How can I check if any details of a task in any project are modified?
I've fetched some tasks for "Project A" and suppose the 'task notes' or 'assignee' of the task is changed. How can I check in my next request if there are any changes?
Will I have to get all the ...
1
vote
1answer
84 views
A trigger to know when there is a new task or updated task?
I'm working on a chrome extension to have a notification when there is a specific new task. For the moment, the only way to do so is to query every X seconds asana.
Wouldn't it be great to have a ...
0
votes
1answer
177 views
How can you get the subtasks using the Asana REST API?
Last week Asana anounced the new sub tasks capability (http://blog.asana.com/2012/10/introducing-asana-subtasks/). Does anyone know how to access subtasks using the REST api? They are not documented ...
0
votes
2answers
114 views
Creating Task - “Workspace: Not an ID” Error
I'm trying to create a task with this JSON....
{
"data":{
"project":[
],
"followers":[
],
"workspace":{
"id":14852,
"name":"My Default"
},
...
2
votes
1answer
131 views
Storing only task id in an array
I am creating a program that will automate some functions with Asana for my workplace but am a bit stuck. I am able to submit multiple tasks to a workspace and retrieve the task ID's of each but was ...
0
votes
1answer
78 views
How to get a user who created project in Asana with Asana API?
I want to retrieve user (id, name) who created project in Asana with Asana Api.
Data returned from REST call in https://app.asana.com/api/1.0/projects/{project-id} contains user object only in ...
0
votes
1answer
61 views
QPS/Call quota limit?
I keep getting:
Response:
{"errors":[{"message":"You have made too many requests recently. Please, be chill."}]}
When trying to download all my tasks - is there a published QPS or other quota limit ...
0
votes
0answers
40 views
data-backend implementation to support reordering items in a workspace
Like Asana (https://app.asana.com/), there are many project management apps. One of the key features they should provide is a way to smoothly drag and drop project items to reorder them in a ...
1
vote
1answer
62 views
Asana API not returning Assignee information when requested using opt_fields
I wish to retrieve tasks (and additional info) in a particular project. Assignee info is not being retrieved.
I made the following api call:
...
0
votes
1answer
70 views
Attaching a document to a task
I could not find a way of attaching a document to a task via the Asana API's at http://developers.asana.com
Is this possible, and if so how?

