Skip to main content

Update JIRA Authentications

The following mutation updates a JIRA Authentication:

mutation UpdateJIRAAuthentication($jiraAuthenticationId: ObjectID!, $name: String) {
updateJiraAuthentication(
input: {
jiraAuhtenticationId: $jiraAuthenticationId
name: $name
}
) {
jiraAuthentication {
id
name
}
}
}

Try in explorer

caution

Only the name of a JIRA Authentication can be updated.