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

Create an Asana task with External Data

I am having trouble creating an asana task with external data. I can create a task fine, but i can't figure out what the cocktail is to be able to use the "external" data that is mentioned in the documentation. $.ajax({ url : global.task.url, …
mistersender
  • 256
  • 1
  • 9
0
votes
1 answer

Posting tasks to asana through API stopped working

I wrote a program to post tasks to asana through the API and it has been working fine up until this morning, can anyone help me figure out why that is? this is an example of the JSON string I am sending: {"workspace":09876543321111,"data":…
Ira
  • 21
  • 6
0
votes
1 answer

Asana: convert user @-tag to API object

I'm parsing the description of tasks for user links (@-tags) that we use to identify different roles on an item. I noticed something weird about the IDs though. In the notes of a task returned from the API the @-tags are converted to links in the…
Michoel
  • 834
  • 5
  • 16
0
votes
1 answer

ASANA API - get only projects associated to me

when you query /projects I get every project in the organization(a-lot) ... is there anyway to just get projects that I am interested in (ie task assigned to me, mention of me, or one that I have flaged as following?) I have also…
Joran Beasley
  • 110,522
  • 12
  • 160
  • 179
0
votes
1 answer

AsanaAPI get only the teams I am a member of

using the endpoint /organizations/organization-id/teams works to get a list of all teams ... but what If I only want teams that the asana-connect user was a member of? I can couple that with a second call to /teams/team-id/members but is there any…
Joran Beasley
  • 110,522
  • 12
  • 160
  • 179
0
votes
2 answers

Can i post a task to a specific location in a project through asana API?

I'm trying to post a task within a project under a certain section, does anyone have any suggestions as to go about doing it/ is it even possible? Thanks
Ira
  • 21
  • 6
0
votes
1 answer

Asana : How can i relate Followers, Assignee and Users/Groups

By using asana api, i can see assignee and followers have same id (as they are same user) but does it really differs if i consider assigneeId and followerID. Can i club assignee, followers and users/groups into one? Please suggest..
Zeeshan
  • 165
  • 1
  • 13
0
votes
1 answer

Am i able to get the description and status of a project in Asana usin an api key?

I've retrieved all the projects from a certain workspace and the tasks associated with them using an Api key in C#, but now I'm wondering how would I go about getting the descriptions and statuses of these projects?
Ira
  • 21
  • 6
0
votes
1 answer

Successfully connected to Asana but doesnt post task

Im trying to post a task on asana through c#. The Json string that im sending is: {"workspace":1234567890123,"data": {"name":"Buy eggs","notes":"Testing"}} and the response I'm getting…
Ira
  • 21
  • 6
0
votes
2 answers

Posting tasks to Asana using API in C#

I'm trying to figure out how to post a new task to a user in asana, but I keep getting the 400 error code. Can anyone tell me what I am doing wrong. This is what I have so far: string apiKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; string…
Ira
  • 21
  • 6
0
votes
1 answer

Set "Project Owner" and "Project Due Date" using API

Does anyone know if there's a way to set the "Project Owner" and "Project Due Date" attributes of an Asana project using the api (https://asana.com/developers/api-reference/projects) ? Thanks
0
votes
1 answer

Creating Asana Project using API leaves name and notes blank

I working on a VB.NET program to that will create an ASANA project using the API. I am able to create a project but the name and notes for the project are blank. Here is my url: https://app.asana.com/api/1.0/teams/22956925957833/projects Here is…
Randy G
  • 19
  • 4
0
votes
1 answer

How to get list of users in Personal Projects workspace using Asana API

I get an empty user list whenever I request the list of users in my Personal Project workspace using the Asana API: https://app.asana.com/api/1.0/workspaces/MY-PERSONAL-PROJECTS-WORKSPACE-ID/users According to the web app, I should get myself and my…
Marc
  • 3,243
  • 3
  • 23
  • 26
0
votes
2 answers

Error trying to Create ASANA Project in VB.NET

I am getting an error: 400 Bad request when trying to create a project via vb.net in asana. Note: The ApiKey I am using works when I use it in other vb.net code to get the list of workspaces which is where I got my workspace ID. Here is my code; I…
Randy G
  • 19
  • 4
0
votes
1 answer

How do we create a link to an Asana workspace

Asana appears to have the following link structure: https://app.asana.com/A/B/C How would you build a link to a workspace assuming I have the workspace Id. E.g. a link to to My Tasks in a specific workspace. These work for other uses, but could not…
Marc
  • 3,243
  • 3
  • 23
  • 26