Questions tagged [asana-api]

The Asana API is a RESTful interface, providing programmatic access to much of the data in the system

The Asana Api is a RESTful interface, providing programmatic access to much of the data in the system. It provides predictable URLs for accessing resources, and uses built-in HTTP features to receive commands and return responses. This makes it easy to communicate with from a wide variety of environments, from command-line utilities to gadgets to the browser URL bar itself.

The API accepts JSON or form-encoded content in requests and returns JSON content in all of its responses, including errors. Only the UTF-8 character encoding is supported for both requests and responses.

189 questions
0
votes
2 answers

memberships section read back empty from API

I'm having trouble attempting to read back a Task's Section property. The online API docs info on sections (api-reference/sections) state: The ‘memberships’ property when getting a task will return the information for the section or the column…
Eduarte78
  • 1
  • 2
0
votes
2 answers

How to create a task in asana with bold description?

I am able to create Project / task / attachment fine with Asana API with PHP. Is there a way to create Bold for Emphasis description for task / project ? I could not find that in Asana API. Can someone point me to right direction?
0
votes
1 answer

Using the Asana API, how can I create a project based on a custom template?

I would like to programmatically add projects, based on a default custom template we have already made in Asana. Is this possible?
Paul
  • 336
  • 1
  • 3
  • 11
0
votes
1 answer

How can I add a user to organization in ASANA via API?

I'd like to add a new user to ASANA programmatically. I already have the OAUTH App and the user token. Looking at the API I can't find a way to "create a new user". Is it possible to create a new user simple via API? Otherwise, is it possible to…
Ziba Leah
  • 2,484
  • 7
  • 41
  • 60
0
votes
1 answer

how to provide access token in postmen for Asana API requests

Hello I am trying to use Postman for sending requests to Asana API, but I am unable to Provide its Authorisation part ScreenShot : I already have : Personal Token: ****** Client ID : ******* Client Secret: *********** Can somebody explain me the…
Shivkumar kondi
  • 6,458
  • 9
  • 31
  • 58
0
votes
1 answer

How do we access board columns/sections through the API?

I've tried to find the answer but no luck. The Asana Developers blog has a post from Feb 2017 states the availability of the Boards API. See here: https://asana.com/developers/feed/boards-api But there are almost no details of how to use it. Can you…
0
votes
1 answer

Getting the count of the amount of tasks with a particular custom field in Asana

I'm trying to get the amount of tasks that have a specific custom field. Is there a query that makes me fetch that? If I try and fetch https://app.asana.com/api/1.0/projects/project-id/tasks I don't get the custom fields with it, if I try…
0
votes
1 answer

Asana Projects API Not Returning All Projects

We are experiencing an issue where we are requesting all projects from a workspace, but, only 29 projects are being returned. Many are missing. This is the code we are using: https://gist.github.com/dzoba/921ec35073d6329aecadc08ceacb445e This is…
crdzoba
  • 651
  • 1
  • 7
  • 20
0
votes
1 answer

Asana API - How to add multiple tags when creating task?

As the title says, how do i add multiple asana tags when creating task? I have this var task = { "data" : { "name" : projectName, "workspace" : getAsanaWorkspace(), "team" : teamId, "notes": desc, …
0
votes
0 answers

unrecognized request field `followers` when posting to asana api for adding followers to a task

I'm using Asana API for the first time. What i'm doing is posting the data to the asana-api using python requests library when running this curl command it works fine. curl --request POST -H "Authorization: Bearer 12345678"…
Rohit Kumar
  • 669
  • 3
  • 9
  • 22
0
votes
1 answer

ASANA Create Task API call stopped working

In the last couple of weeks, Create Task API Call for ASANA stopped working. This code has been working for last 6 months but now it fails. The error I get is The remote server returned an error: (434) Client Error (434). According to the ASANA…
0
votes
1 answer

Posting an Asana task using fetch

I'm trying to work with the Asana API as I learn React and Redux. I've been able to get data from the Asana API using fetch() just fine so far, but I'm having trouble posting a task. Here is the code I'm using: const options = (type, data) => { …
0
votes
1 answer

Access all projects (teams) in Asana - admin read

I have an app that I want to be able to access all teams and their projects. Is there an admin user, or a way to authenticate as an admin. Rather than having to use a specific user that needs to be added to each team?
Chris Nicol
  • 10,256
  • 7
  • 39
  • 49
0
votes
1 answer

Asana API Sync Error

I currently have a application running that passes data between Asana and Zendesk. I have webhooks created for all my Project in Asana and all project events are sent to my webhook end point that verifies the request and tries to identify the event…
0
votes
2 answers

Export asana project in csv via API

I want to regularly export a project from Asana in csv, programatically. An example of how to do this manually is here. My objective is to have a frequently updated list of all tasks and where they are in the project (what "column") for reporting…
sapo_cosmico
  • 6,274
  • 12
  • 45
  • 58