# Update JIRA Authentications https://api-docs.lumar.io/docs/protect/notifications/jira/update-jira-authentications The following mutation updates a JIRA Authentication: ```graphql mutation UpdateJIRAAuthentication($jiraAuthenticationId: ObjectID!, $name: String!) { updateJiraAuthentication( input: { jiraAuthenticationId: $jiraAuthenticationId name: $name } ) { jiraAuthentication { id name } } } ``` :::caution Only the name of a JIRA Authentication can be updated. :::