Questions tagged [asana]

Asana is a flexible task manager that people can use for Customer Relations Management, Project Management, and Team Management.

Asana, found at asana.com, is a HTML5 flexible task manager. A workspace is a group of individuals and projects, and each project has a name and a list of tasks. Each task can be assigned to any individual in that workspace.

Some people use Asana to handle customer-relations. Each new customer becomes a project, and any task inside that project represents an interaction with the customer. The project itself would be used to store information about that customer.

Another use is project or team management. Every individual in the workspace is an employee, every project is a project that needs to be completed, and every task inside a project is a part of that project that needs to be done or has been done. The project itself would be used to store information about that project.

Asana can also be used as a bug tracker, a blog, and countless other things.

Asana features a REST API which can be used to create a variety of different extensions. Asana also has a Chrome extension.

528 questions
0
votes
1 answer

asana API integration fails in JAVA

Tried to integrate asana API with java,struts project. By using javasana class i succeeded to get workspaces,users etc Now my requirement is to add tasks to asana.So i tried to configure API using following configuartion with th help of mvn…
mahesh
  • 1,311
  • 1
  • 13
  • 26
0
votes
1 answer

Translating Links in Comments into User IDs

When I get stories from the API with a type of "comment", several of them have links where Asana users/people are mentioned. How to I translate these links into user ids?
Simon Yost
  • 21
  • 2
0
votes
1 answer

add followers to asana task using api

I just don't know why this fails. I have the following which attempts to add tasks to Asana: $arrayOfIds = array("0123456789", "9876543210"); $followers = implode('", "', $arrayOfIds); $newtask = $asana->createTask(array( "workspace" =>…
WayneT
  • 176
  • 1
  • 12
0
votes
1 answer

How to add tag to task using the asana API?

I am attempting to add a tag to a task using the following curl command as per the API: curl -u : https://app.asana.com/api/1.0/tasks//addTag -u "tag=" When running the command I am prompted for a password and then get an…
joekim
  • 189
  • 1
  • 8
0
votes
1 answer

`handle_response': Failed. Response code = 400. Response message = Bad Request. (ActiveResource::BadRequest)

We are trying to fetch data from Asana through asana api using ruby script, at the time we are getting following errors. `handle_response': Failed. Response code = 400. Response message = Bad Request. (ActiveResource::BadRequest) and at the time…
Ramesh
  • 1
0
votes
1 answer

Waiting for multiple async calls using async.each

I need to wait for few async calls to complete before resuming execution. I tried the following code using async. asana.getUsers(null, function(error, resp){ async.each(resp.data, function(user, cb) { console.log("Get info for user : ",…
CodeRain
  • 6,334
  • 4
  • 28
  • 33
0
votes
1 answer

Tags created via Asana API not associated with tasks are not returned in tags API call

In my tests... the newly created tag is not in the get request for tags when it isn't associated with a task. Once associated with a task it seems to appear in the response. However, once removed from a task it disappears from response.
Tori Marrama
  • 262
  • 1
  • 2
  • 13
0
votes
1 answer

Asana API - Setting the commenting user and html tags

I'm creating tasks in Asana via the api and pulling comments from elsewhere into Asana 'stories'. This all works well however the api doesn't seem to allow a user id to be passed for the comment - so it appears that only I have made comments and am…
WayneT
  • 176
  • 1
  • 12
0
votes
1 answer

How to list all the users of a team using asana api?

I am developing an application using the Asana API. As a part of which I need to display all the members of a team in an organization. When I use /organizations/organization-id/teams I get a listing of all the teams(team id and team name) and if i…
Gopal Samant
  • 21
  • 1
  • 4
0
votes
1 answer

get multiple user data in a single query

I did the following. curl -u $API_KEY https://app.asana.com/api/1.0/users then I collect the IDs of all users. Is there a way to get all users info in a single query. I want some think like curl -u $API_KEY…
0
votes
1 answer

How does one reorder Asana tasks within assignee_status via API

I understand how to reorder tasks within a project, but what about when working across projects? I'd like to use the API to reorder tasks set to 'today' as if I were changing their priority within the Asana web UI's "My Tasks" view. Can this be done…
jbl
  • 2,710
  • 3
  • 18
  • 13
0
votes
1 answer

Uploading attachment to Asana

I'm trying to add some functionality to an internal Access database that will automatically create tasks on Asana. My VBA experience is somewhat limited but by examining various code samples online and tinkering I've been able to POST tasks with…
0
votes
1 answer

How do i retrieve the tasks for a project under the priority heading?

How do i retrieve the tasks for a project under the priority heading? For example i have recruitment project, i want to retrieve tasks under "Interviewed" heading (priority heading) Thanks
Imran Syed
  • 81
  • 3
0
votes
1 answer

Jquery Ajax request to Asana's oauth2 API

I'm developing an Asana app using Ember.js and I've running into some issue when I need to call the API. The oauth2 sign in/sign up is working great and I receive a working token ( tested it using curl) I understand that I need to use the…
Syl
  • 1,164
  • 2
  • 14
  • 23
0
votes
1 answer

Information on new task created in Asana

I am working on an application that needs to take some actions when certain events happen in user's Asana account (such as new task created, new project created and existing task modified). For this I plan to poll the Asana API every 15 mins and…
DEREK N
  • 965
  • 1
  • 8
  • 11