Hello,
I am learning Rest API of taiga. I am using documentation Taiga REST API as reference. Here i am confused to get application id. There are api which required application id to proceed. i dont know how to get it. Please guide!!
Hello,
I am learning Rest API of taiga. I am using documentation Taiga REST API as reference. Here i am confused to get application id. There are api which required application id to proceed. i dont know how to get it. Please guide!!
Hi there!
Which endpoints that you need require you to have an application ID?
Best regards!
@Charlie ,
I was doing one by one as per documentation.
curl -X GET
-H “Content-Type: application/json”
-H “Authorization: Bearer {AUTH_TOKEN}”
https://api.taiga.io/api/v1/applications/5c8515c2-4fc4-11e5-9a5e-68f72800aadd/token
Here i got stuck…on cloud if application tokens not required then how i have to start please guide…I means how i can use api because most of the api in documentation are using application id. Please guide. I am beginner to this taiga
Hi again,
No endpoints that I know of specifically require application tokens, except for application related ones.
You can get a list of projects, or create them, or edit them using an auth token. Like this Taiga REST API.
Same with issues, user stories, tasks, etc.
Hope this helps!
@Charlie ,
If i have created one project on cloud instance using GUI then can i access that via api?.
I am getting projects but not what i have already created with GUI. The one which i have created using api it is showing there.
curl -X GET
-H “Content-Type: application/json”
-H “Authorization: Bearer ${AUTH_TOKEN}”
-s http://localhost:8000/api/v1/projects
This is not showing my project. It shows what i have created using api not what i have created from GUI.
First, you need to use https://api.taiga.io/api/v1/projects instead of localhost.
Also, that will show you all public projects on Taiga, and also your private projects. If you want to see only projects where you are a member, please use also https://api.taiga.io/api/v1/projects?member=your-user-id
@Charlie ,
Thank you it worked.