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

Find a tasks' sub-section

When I grab the details of a task via the API there is no reference to the section that it's under. On the webpage the task shows what project and sub-section it's under, in the API it just shows the "projects" data without the sub-section. Is there…
eresonance
  • 1,351
  • 11
  • 12
0
votes
1 answer

Asana Task Logs - How to get it?

Asana lack of reporting is bugging my team, so we are trying to use the asana's API to generate at least basic reporting. Is it possible to get the task logs that are shown in the task details? In the task details I can see this: User created…
Maviles
  • 3,209
  • 2
  • 25
  • 39
0
votes
1 answer

Asana Task Permissions

I am connecting to the Asana API endpoint and creating a task independent from anything except I am putting in into my company workspace. I see that it has the permission "private" but I can change it to "public" on the UI in the site. However, I…
harmonickey
  • 1,299
  • 2
  • 21
  • 35
0
votes
1 answer

Error 400 Bad Request when querying for list of projects

I am trying to query the list of projects available to a user with the Asana API as shown in their documentation under the title "Show all projects in a workspace or organization", but I am encountering a 400 Error. The error message details being…
0
votes
1 answer

MyAsana Error Unexcepted to connect

I use API Asana in "MyAsana" to follow my Workspace (Project) in Asana. The API is used in 10 smartphones from different people to follow the task of projects. After 2 days, the API does not respond. All applications authorized in Asana do not…
0
votes
1 answer

Hyperlink Mentions of Users in Stories

I'm building a script that will notify a hipchat room about changes on tasks, comments, etc. in Asana. I'm facing 3 simple problems but I'm stuck and was thinking maybe some of you could help me. Problem #1: The problem i'm facing is that when…
0
votes
1 answer

Query for all tasks in specific workspace that are not completed

I have the following cURL cmd running which returns all tasks for a specific userID within a specific workspaceID, but the "completed=false" part of the cmd doesn't influence the data returned. I am trying to exclude all "completed" tasks.…
0
votes
1 answer

Lazy loading knockoutjs with bookmarklet failing

I'm attempting to fix a bookmarklet I wrote to track the URL changes in a single page application, specifically recording timesheet while using asana. It uses a script loader to embed jQuery and KnockoutJS libraries before init. I'm unable to find…
jacoswarts
  • 473
  • 4
  • 7
0
votes
1 answer

Asana oAuth with GTMOAuth2 - unable to login with Google account

using the latest GTMOAuth2 for mac, regular oAuth authentication with username and password works fine. But clicking sign in with google account does not present the google login page. how can we fix it.
0
votes
1 answer

Error You have made too many requests recently. Please, be chill. in Asana API

I have tried to send only 5 call to fetch tasks from Asana API. Here is my code $tasks = $client->fetch('https://app.asana.com/api/1.0/workspaces.json'); print_r($tasks); $i=0; while(isset($tasks['result']['data'][$i]['id'])) { $tasks_detail…
mohd afeef
  • 35
  • 1
  • 10
0
votes
0 answers

how to Store Associative Array data in Database

here is my code: $user_detail = $client->fetch("https://app.asana.com/api/1.0/users/" .$response['result']['data'][$i]['id'].'.json'); echo $q="INSERT INTO `asana_users`(`Name`, `Email`,`Workspaces`) VALUES …
mohd afeef
  • 35
  • 1
  • 10
0
votes
0 answers

How to fetch tasks Through Asana API

Here is the code I'm currently using to fetch data from Asana API: I have tried this code so please tell me where I'm wrong. $tasks = $client->fetch('https://app.asana.com/api/1.0/workspaces.json'); //print_r($tasks); //as i do print_r then i…
mohd afeef
  • 35
  • 1
  • 10
0
votes
1 answer

Asana Javascript Oauth Error no route found

So I keep Receiving an error when I'm trying to use OAuth with Asana's API. The error I'm receiving is "Error no route found". What am I doing wrong? I know that the request is most likely correct, but I believe it returns a hashed URL and i'm…
angyxpoo
  • 193
  • 2
  • 5
  • 16
0
votes
1 answer

Creating multiple tasks in a batch using Asana API?

I have written a piece of Google Apps Script code that searches for all Action Items -- AIs in a doc, and creates Asana tasks from them. This is awesome, except for one annoying problem -- it takes a pretty long time 5-10 seconds to assign all…
Artem
  • 6,420
  • 6
  • 26
  • 26
0
votes
0 answers

What is the Asana API unicode (uft-8) issue here (file attachment)?

I thought I'd be able to solve this with thinking and google, but I'm not... There's an asana API python wrapper that I forked and extended so it handles file uploads. I use it inside my administration web app to create tasks and attach .pdf files…
creimers
  • 4,975
  • 4
  • 33
  • 55