Taiga how-tos
You need your API username and password for authentication purposes.
API base URL for Taiga instance (like https://api.taiga.io/api/v1).
Authenticate your user
Set the request type to POST.
Use this URL:Â
<API-base-URL>/auth
. ReplaceÂ<API-base-URL>
 with your Taiga instance's API URL.Next, set your headers. Under the headers tab, enter:
Key isÂ
Content-Type
Value isÂ
application/json
Now switch to the body tab and choose the raw option. Add your credentials in form of JSON:
{ "type": "normal", "username": "<Your-Username>", "password": "<Your-Password>" }
Click send to make the request. The response contains your auth token which you will need in the subsequent steps, so keep this open.
Create your ticketÂ
This action needs to be a child of the first action
Whichever project you're putting the ticket in, you'll need the project id.
Set the request type to POST.
Set the URL toÂ
<API-base-URL>/issues
.Add your headers next:
Key isÂ
Content-Type
Value isÂ
application/json
Key isÂ
Authorization
Value isÂ
Bearer {Your Auth Token}
. ReplaceÂ{Your Auth Token}
 with the token got from step 1.
Set your body to raw and add your issue details. You'd have to replace each of the <values> with their actual values.
json
{ "project": <id_of_project>, "subject": "<title_of_issue>", "description": "<description_of_issue>", "tags": ["example-tag-1", "example-tag-2"], "priority": <priority-id>, "status": <status-id> }
You can find priority and status ids from the Taiga UI.
Click send. Your ticket would be created with the details in the body, it should return aÂ
201
 status code.