# Retrieve JIRA Authentications https://api-docs.lumar.io/docs/protect/notifications/jira/retrieve-jira-authentications ## Getting a JIRA Authentication by id The following query retrieves a JIRA Authentication by id: ```graphql query GetJIRAAuthentication($jiraAuthenticationId: ObjectID!) { node(id: $jiraAuthenticationId) { ... on JiraAuthentication { name cloudId jiraUrl createdAt updatedAt } } } ``` ## Listing all JIRA Authentications in a given account The following query retrieves the JIRA Authentications in a given account, by providing the account id in `id` argument: ```graphql query GetAccountJIRAAuthentications($accountId: ObjectID!) { node(id: $accountId) { ... on Account { jiraAuthentications { nodes { name cloudId jiraUrl createdAt updatedAt jiraIntegrations(first: 100) { nodes { name jiraProjectId jiraIssueTypeId createdAt updatedAt } } } } } } } ```