Hello,
I have external customer with their own JIRA and projects.
What I try to is to create an automation on their side to our JIRA project on the other side.
What are the best practices? Do I need to create a user in our project with admin permissions and provide API key for them?
I am Christophe, a solution engineer @Exalate
With Exalate you can easily establish a connection between your projects and your customers.
welcome to the Atlassian Community.
For an automation, you can basically follow the steps @Cristian0791 provided.
You don't need to give admin permissions to that service user. Only permissions to create issues, edit issues (all the actions you want to model with your automation).
If you don't only want to copy but also sync it, you can also go ahead and update your automations so that they react to issue updates. What is important is that you need to store a relation between the two tickets somehow. Most people do this by storing the issue key of the other side in a custom field. You can use this information in your automations to find the right issue.
If you also want to synchronize attachments, I think this is still not possible to do with automations, you either need to write your own scripts using Jira's REST API outside or take an issue sync app from the marketplace. I'm part of the team behind Backbone Issue Sync - these apps basically take the burden away that you need to think about all the different steps of your automations and don't need to maintain them.
Cheers,
Matthias.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Viktar,
If you want just to create a ticket in tenant A when a ticket in tenant B is created,
You will need:
1.Create in tenant A a service user
2.Add the service user to the project/s where you need the issue to be created
3. Provide the power user Create ticket permission
4, In project B create a Automation ( Trigeer: When issue created, Condition: JQl , Action: Send web request) and a Webhook in project A will receive the post and create the ticket.,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you need a sync between tenant A and B I suggest a python script.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.