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
2 answers

retrieve RESTful data using JQuery ajax() method

I am trying to pull in information from Asana API via JQuery.ajax() method. But no desired result is returned, or error showed.Here is my partial code in JavaScript: $(document).ready(function () { $('#buttonCallAjax').click(function () { …
lxx22
  • 225
  • 7
  • 17
0
votes
4 answers

How to Add Tag via Asana API

I am trying to do a simple Salesforce-Asana integration. I have many functions working, but I am having trouble with adding a tag to a workspace. Since I can't find documentation on the addTag method, I'm sort of guessing at what is required. If I…
Aurelio
  • 31
  • 7
0
votes
1 answer

Create Project through Asana API

Perusing through the documentation, I see an endpoint that can be used to update existing Projects, but nothing about creating new Projects. Is this capability not currently supported?
Chris
  • 57
  • 4
0
votes
2 answers

Can't get opt_expand to work from Ruby (using same code that works in curl)

I've written a short Ruby script which creates a nice export of ASANA tasks into csv, however it takes a while to run because I have to do a GET for every task within each project. I found a way of using opt_expand to get all task data at once for…
0
votes
2 answers

How to run "hello" example in Asana API documentation

How to run "hello" example in Asana API documentation? C:\Users\Desktop\ruby helloTask.rb C:/Ruby193/lib/ruby/1.9.1/net/http.rb:799:in `connect': SSL_connect returned=1 e rrno=0 state=SSLv3 read server certificate B: certificate verify failed…
lxx22
  • 225
  • 7
  • 17
0
votes
1 answer

Is it possible to expand Asana's workspaces//projects to include created_at?

I can't seem to find the magic keystrokes to make it happen. I'm using RestSharp in a .NET application if that makes a difference, but I'll be happy to know for now if it's even possible. If not, I can always pull the exact details for each project…
Alex Dresko
  • 5,179
  • 3
  • 37
  • 57
0
votes
1 answer

How do I get follower names instead of IDs?

I assumed that this would provide me with the list of follower names instead of just the IDs: https://app.asana.com/api/1.0/projects?opt_fields=name,followers&opt_expand=followers Am I using opt_expand incorrectly?
Nick Sweet
  • 2,030
  • 3
  • 31
  • 48
0
votes
2 answers

Is there an endpoint to delete or remove a task in Asana?

I can't seem to find the remove / delete task endpoint in the Asana API. http://developers.asana.com/documentation/#tasks Is this functionality available to developers yet? If so, how can I remove a task?
Sheehan Alam
  • 60,111
  • 124
  • 355
  • 556
0
votes
1 answer

update "public"/"private" status of Asana tasks?

Can I use the Asana API to change a task from public to private or vice versa? I've checked in the documentation (http://developer.asana.com/documentation/) and don't see anything there.
DavidC
  • 1,409
  • 10
  • 25
0
votes
1 answer

ASANA API and Access-Control-* headers

I am writing some code to call the Asana API from the browser. XDR requests emitted from the browsers all begin with a call to OPTIONS to get the Access-Control-* headers, but Asana server does not seem to response to them: Request…
0
votes
1 answer

Lua examples to link to Asana

Do you have any Lua examples to access and change the Asana data. That will be really helpful. I want to link Asana to my offline task manager in Lua which provides me some additional flexibility.
Milind
  • 415
  • 8
  • 24
0
votes
1 answer

Query for open tasks in Asana

We're looking at using Asana to combine CRM, administration and issue tracking in a web dev firm. The key feature we need is a view of the "next actions" or "top [1|2|3] priorities" across all projects in a workspace, irrespective of who they are…
0
votes
1 answer

Asana- Invalid Field

I'm POST'ing the following JSON to asana's "tasks" endpoint. { "data": { "options": { "fields": [ "name", "notes" ] }, "workspace": , …
DanRedux
  • 9,119
  • 6
  • 23
  • 41
0
votes
2 answers

How to POST data to Asana instead of GET?

I'm using cURL in PHP to access the Asana API. I've been happy appending my values to the URL as GET but now, as my app grows larger, I'm posting more and more data, so I've been trying to convert it to post. So far, I've tried: setting post['data']…
DanRedux
  • 9,119
  • 6
  • 23
  • 41
0
votes
1 answer

How to get project workspace details

To get project names and followers I can use: https://app.asana.com/api/1.0/projects?opt_fields=name,followers However it doesn't let me get the workspace: https://app.asana.com/api/1.0/projects?opt_fields=name,workspace Only the project ids and…
Mike
  • 155
  • 1
  • 6