I am so new to API as a Jira admin. I understand how to create an individual API token, but how do you get the URL and Passwords to be able to integrate as a non-individual (ie. integrating service now)
Hi, I am using an application user to create issue as my Jira local server has SSO enabled. I am fetching the fields based on the issue type, now I want to handle these fields dynamically based on the response. How can I handle that and provide different input types based on these. Can you help on this? TIA
Hey, thanks for the comment, so it's little tricky in the Jira cloud. I will record a quick video how to do it but try this. Generate an API key and log in as the standard used an use API key as the password
So you need to select Epic as the issue type and don't forget to add epic name and summary. I know they are checking it a bit but I tested it last month and it was fine.
@@ProjectFlowAcademy requestData = { fields: { project: { key: key, }, summary: title, description: description, issuetype: { name: 'Bug', }, epic: 'F-876', }, }; // This is the data I sent you but it doesn't work for me.I found some information where it says I should add the "custom field" but I don't understand. Could you make a video explaining how to create a ticket and put it into an epic?