Move User Storys with http request

After hours of researching documentation, checking with AIs, and searching the community, I discovered that it is possible to move User Stories between different projects using Http Request Put.

I used N8N for this, but in general, what you need is to send a json with the following information:

{

“project”: 1,

“subject”: “{{ $json.subject }}”,

“version”: {{ $json.version }}

}

The Project ID must be the project to which you want to move the Story in question, the Subject is the title of the Story, and the version is its latest version (1, 2, 3…). It has “$json.” because using N8N I can collect this automatically with a Taiga Get node.

Here is the record for the few upcoming users who want to automate Kanbans that need to move Stories like I do.