I used the create tag API call to create a tag successfully within my workspace. I’ve queried the tag created with a GET and the API retrieves it. However, I do not see the newly created tag in ASANA gui in order to associate it with a new task.
Could anyone guide me as to where the issue might be?
note: I’ve checked my workspace and it is correct.
Thank you for this. I’ve been using python to create tasks and add the tasks to them. I guess my question would be if there’s a way around it. Since in my test run the tag is not being recognized even then.
yes sir, I used the asana.tags.find_by_workspace to retrieve all tags associated with a workplace.
Although Postman tells me my tag is inside that specified workspace, my task creation fails because it can’t find it using asana.tags.find_by_workspace. Could this be because it takes time to synchronize?
No, there’s no synchronization lag in the Asana API.
I’m not familiar with the Python SDK so I’m not sure the reason for using find_by_workspace but you may be seeing another oddity of tags: an empty tag - one not associated with a task - will not be surfaced in the API:
from
You’ll need to:
Create the tag in the API and that should return its gid.
Use that returned gid to attach the tag to a task.
At that point the new tag should be fully visible in both the UI and the API.