# Update Test JIRA Notification Settings https://api-docs.lumar.io/docs/protect/notifications/jira/update-test-jira-notification-settings The following mutation updates a test JIRA Notification Settings: ```graphql mutation UpdateTestJIRANotificationSettings($testId: ObjectID!, $createJiraTicketOnFailure: Boolean, $jiraTicketCustomNote: String) { updateTest(input: { testId: $testId, createJiraTicketOnFailure: $createJiraTicketOnFailure, jiraTicketCustomNote: $jiraTicketCustomNote, }) { test { id createJiraTicketOnFailure jiraTicketCustomNote } } } ```