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

Getting updates via POST back or query

I'm working on integrating asana with another system we use. I was hoping to find a way to get a list of recently updated tasks either by query or post back. Has anyone had any luck doing something like this?
0
votes
2 answers

Attachment through ASANA API

How can we pass attachment though asana API (JSON), i could not see any reference in the documentation provided. I like to send WORD/Xls docs through API, let me know if that is possible?
0
votes
1 answer

Line break in "notes" content on new TASK creation through API (JSON)

I like to get some Line breaks in the notes content on task creation, I tried
,
, /r/n , /n/r and some ASCII too. Nothing worked, I am using JSON object through JAVA code.
0
votes
1 answer

How to get list of tasks specific to assigned user & projects from Asana in php?

How would I get the list of tasks (based on its status) from asana in php which is filtered on user (assigned to) and projects. e.g.: Suppose a workspace: WSA1 have projects P1, P2, P3... and I have Users as U1, U2... assigned to the task randomly…
0
votes
1 answer

how to mark a task as archived with the asana api?

If i just mark a task as completed, it still gets returned each time I query for tasks, forcing me to process the same task each time I call the tasks api. I have tried searching the documentation, to no avail. If I can mark a task as archived, that…
0
votes
1 answer

Send asana user Id and Password through a server request and get the APIKey in response

Hi All: I have integrated my ios app with asana and for the user authentication I am using asana APIKey which is a 32 characters long string (capital/small alphabets plus digits and a dot),so when ever the user wants to access his/her asana account…
Mehdavi
  • 41
  • 5
0
votes
1 answer

What technology is the Asana Iphone app based on?

I have been using the Asana App for Iphone and find it works very smooth and efficiently. I was wondering if it was developed using a specific framework or if it is just native code... I googled for info but could not find any information.
smarques
  • 708
  • 7
  • 22
0
votes
1 answer

how to get json of task list from asana

I am trying to get a .json of the list of tasks using a javascript. Sadly, I have had a sore time trying to find javascript specific documentation, so I don't even know where to start. Answering this one basic question would be great, but if someone…
AdamMasters
  • 355
  • 3
  • 19
0
votes
2 answers

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... This is the response in JSON…
Andries Koorzen
  • 131
  • 2
  • 11
0
votes
1 answer

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 make you calm?) I have tried to follow the logic…
Andries Koorzen
  • 131
  • 2
  • 11
0
votes
2 answers

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, the problem is I need to make about 40 requests to…
Herbage Onion
  • 181
  • 4
  • 15
0
votes
1 answer

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 (selectively redacted): fetch tokens for…
Echobeko
  • 7
  • 1
0
votes
0 answers

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 simplest of commands, GET /users/me This is the…
0
votes
1 answer

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 only.. I can't use any server side solution. So…
Syed Raza
  • 1,070
  • 3
  • 14
  • 36
0
votes
2 answers

response is giving error

I have following code to create a task in asana . String data = "{" + " \"data\": {" + "\"workspace\":4661999437107," + "\"name\": \"crmit solutions\"," + "\"notes\": \"NOTES_ABOUT_TASK_GO_HERE\"," +…
Ravi
  • 19
  • 1