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 :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 parameter need to have workspace Id and Api id…
Ravi
  • 19
  • 1
0
votes
1 answer

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 task. This leaves me guessing who actually…
nmercer
  • 35
  • 3
0
votes
1 answer

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 Below is the code, its exactly from the example.…
esafwan
  • 17,311
  • 33
  • 107
  • 166
0
votes
1 answer

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.
grepjuice
  • 3
  • 1
  • 2
0
votes
1 answer

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?
Max Zhuravlev
  • 324
  • 3
  • 13
0
votes
2 answers

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 =…
Philip Wade
  • 348
  • 2
  • 3
  • 10
0
votes
1 answer

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 tasks and check for their "modified_at" and compare it…
wasimbhalli
  • 5,122
  • 8
  • 45
  • 63
0
votes
2 answers

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" }, "name":"This is test task", …
Steve Reich
  • 101
  • 1
  • 5
0
votes
1 answer

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 "followers" array, but these users are only...…
0
votes
2 answers

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?
Siddharth Ram
  • 546
  • 5
  • 15
0
votes
1 answer

How to correctly deal with 302 status code

Im not sure how i should deal with a HTTP_STATUS of 302 in my response to an API request? Im trying to write a small Node.js script and i have a feeling this is to do with the HTTPS upgrade of the request i send? Any help would be great
Chris Matheson
  • 348
  • 2
  • 7
0
votes
1 answer

using jQuery with Asana

I want to use Asana like this, but I always receive the message about invalid label. $.ajax url: "https://app.asana.com/api/1.0/projects" username: apikey dataType: "jsonp" success: (projects) -> Update: Okay, it looks like something…
0
votes
1 answer

Can I check an Asana API key against some regular expression

Can I check an API key against some regular expression, for example if I want to use it to on an input form?
0
votes
1 answer

Access ASANA via windows powershell using APIKEY

I have created this following two codes in powershell to access ASANA. But both of them dont work. I always get this error "The remote server returned an error: (401) Unauthorized." Any help appreciated. If you have a working C# code that can…
MAK
  • 1
0
votes
1 answer

Asana API returning incorrect data

The data I get from Asana API somehow is returning incorrect data. For example, the order of the tasks return does not correspond to the current web UI..which is necessary for me to go through the items and take tasks under a certain heading. In…
Carolyn
  • 103
  • 1
  • 5