Skip to main content

Create JIRA Integrations

The following mutation creates a JIRA Integration for a given JIRA Authentication:

mutation CreateJIRAIntegration($jiraAuthenticationId: ObjectID!, $name: String!, $jiraProjectId: String!, $jiraIssueTypeId: String!) {
createJiraIntegration(
input: {
jiraAuthenticationId: $jiraAuthenticationId
name: $name
jiraProjectId: $jiraProjectId
jiraIssueTypeId: $jiraIssueTypeId
}
) {
jiraIntegration {
id
name
jiraProjectId
jiraIssueTypeId
createdAt
updatedAt
}
}
}

Try in explorer

caution

JIRA Project Id and JIRA Issue Type Id need to correspond to your JIRA projects and issue types.