# Retrieve JIRA Integrations https://api-docs.lumar.io/docs/protect/notifications/jira/retrieve-jira-integrations ## Getting an JIRA Integration by id The following query retrieves a JIRA Integration by id: ```graphql query GetJIRAIntegration($jiraIntegrationId: ObjectID!) { node(id: $jiraIntegrationId) { ... on JiraIntegration { name jiraProjectId jiraIssueTypeId createdAt updatedAt } } } ``` ## Getting the JIRA integration linked to a given test suite The following query retrieves the JIRA Integration linked to a given test suite: ```graphql query GetTestSuiteJIRAIntegrations($testSuiteId: ObjectID!) { node(id: $testSuiteId) { ... on TestSuite { testSuiteJiraIntegration { jiraIntegration { id } } } } } ```