1
0
-1

How can I put the remote link of the twin, as the Issue Link in Jira Cloud?



    CommentAdd your comment...

    2 answers

    1.  
      1
      0
      -1

      Please put this in the Incoming Sync;


      httpClient.put("/rest/api/3/issue/${issue.key}", """{
          "update":{
            "issuelinks":[
               {
                  "add":{
                     "type":{
                        "name": "Relates",
                          "inward": "relates to"
                          
                     },
                     "outwardIssue":{
                        "key":"${replica.key}"
                     }
                  }
               }
            ]
         }
      }""")




      It will look like this;

        CommentAdd your comment...
      1.  
        1
        0
        -1

        Mathieu Lepoutre I have similar use case - but using two different instances so issue link is impossible to apply. How should I implement a link to the synced remote issue in the other destination?

          CommentAdd your comment...