{"id":"page-88e5c2fea7","pageData":{},"thumbnail":"https://www.unchealth.org/etc.clientlibs/unchealth/clientlibs/clientlib-react/resources/logo1200x630.png","templateName":"t01-basic-page","contentLanguage":"en","cssClassNames":"page basicpage","metaDescription":"Get diagnosis and treatment in North Carolina for all types of adrenal disorders from UNC Health endocrinologists near you.","brandSlug":"UNC Health","defaultMetaSiteName":"UNC Health","siteURL":"https://www.unchealth.org","mainSchemaHtml":"<script type=\"application/ld+json\" id=\"mainSchema\"></script>","customSchemaHtml":"<script type=\"application/ld+json\" id=\"customSchema\"></script>","bodyBottomGlobal":"<script>\r\n  function getLiveChatConfig() {\r\n    const phone =\r\n      \"800-594-8624 (toll-free) or locally at 984-974-2222 Mon. – Thurs., 8:00 AM – 5:00 PM and Fri., 8:00 AM – 11:30 AM.\";\r\n    const nebulaURL = \"https://livechat-livechat.app.st-882.epiccloud.io\";\r\n    const chatScriptURL =\r\n      \"https://livechat-web-client.app.st-882.epiccloud.io/assets/epic-live-chat.es.js\";\r\n    const apiKey =\r\n      \"AAEAAZmakTnG4EHUADF7IlNpdGVJZCI6IjViZmQyYTM4LTUyZjItNDMzZS04NmI2LTdiZTg1NzM5YWFmZCJ9hM+rEbw4ueEid0MN5b0mjsOLTtWsrCjU6rWqKEQwR2Sw+bndAQw0Iw==\";\r\n\r\n    const branding = {\r\n      primaryColor: \"#004263\",\r\n      fontFamily: \"Muller, Arial, sans-serif\",\r\n      minimizedChatTitle: \"How can we help?\",\r\n      liveChatTitle: \"UNC Health Billing Help\",\r\n      organizationImageURL:\r\n        \"https://www.uncmedicalcenter.org/app/files/public/7453/img-system-systemlogo.png\",\r\n      organizationImageDescriptor: \"UNC Health logo\",\r\n    };\r\n\r\n    return { phone, nebulaURL, chatScriptURL, apiKey, branding };\r\n  }\r\n</script>\r\n\r\n<script>\r\n  (function () {\r\n    const containerId = \"lcWidget\";\r\n\r\n    // ✅ Show chat on these pages (exact “records-insurance” routes)\r\n    const CHAT_PATHS = new Set([\r\n      \"/records-insurance/pay-my-bill\",\r\n      \"/records-insurance/financial-assistance-programs\",\r\n      \"/records-insurance/insurance\",\r\n      \"/records-insurance/billing-insurance-terminology\",\r\n      \"/records-insurance/price-estimates\",\r\n      \"/records-insurance/standard-charges\",\r\n    ]);\r\n\r\n    let scriptInjected = false;\r\n    let widgetRendered = false;\r\n\r\n    function normalizePath(rawPath) {\r\n      let p = (rawPath || \"/\")\r\n        // remove query/hash fragments\r\n        .split(\"?\")[0]\r\n        .split(\"#\")[0]\r\n        // convert any weird whitespace (including NBSP) and trim\r\n        .replace(/\\u00A0/g, \" \")\r\n        .trim()\r\n        // drop .html if present\r\n        .replace(/\\.html$/, \"\");\r\n\r\n      // drop trailing slash (except root)\r\n      if (p.length > 1) p = p.replace(/\\/+$/, \"\");\r\n\r\n      // If we're on an AEM content path, reduce to the “pretty” portion\r\n      // Example: /content/unchealth/us/en/records-insurance/insurance  -> /records-insurance/insurance\r\n      const idx = p.indexOf(\"/records-insurance/\");\r\n      if (idx !== -1) {\r\n        p = p.slice(idx);\r\n      }\r\n\r\n      return p;\r\n    }\r\n\r\n    function shouldShowChatNow() {\r\n      const current = normalizePath(window.location.pathname);\r\n      return CHAT_PATHS.has(current);\r\n    }\r\n\r\n    function getContainer() {\r\n      return document.getElementById(containerId);\r\n    }\r\n\r\n    function ensureContainer() {\r\n      if (getContainer()) return;\r\n\r\n      const container = document.createElement(\"div\");\r\n      container.id = containerId;\r\n      container.style.position = \"fixed\";\r\n      container.style.right = \"20px\";\r\n      container.style.bottom = \"20px\";\r\n      container.style.zIndex = \"9999\";\r\n      document.body.appendChild(container);\r\n    }\r\n\r\n    function showChat() {\r\n      ensureContainer();\r\n\r\n      const container = getContainer();\r\n      if (container) container.style.display = \"block\";\r\n\r\n      document.querySelectorAll(\"iframe[src*='epiccloud.io']\").forEach((el) => {\r\n        el.style.display = \"block\";\r\n        el.style.visibility = \"visible\";\r\n        el.style.pointerEvents = \"auto\";\r\n      });\r\n    }\r\n\r\n    function hideChat() {\r\n      const container = getContainer();\r\n      if (container) container.style.display = \"none\";\r\n\r\n      document.querySelectorAll(\"iframe[src*='epiccloud.io']\").forEach((el) => {\r\n        el.style.display = \"none\";\r\n        el.style.visibility = \"hidden\";\r\n        el.style.pointerEvents = \"none\";\r\n      });\r\n    }\r\n\r\n    function renderWidgetWhenReady() {\r\n      const liveChatProps = getLiveChatConfig();\r\n\r\n      let tries = 0;\r\n      const t = setInterval(() => {\r\n        tries++;\r\n\r\n        if (typeof window.renderLiveChat === \"function\") {\r\n          clearInterval(t);\r\n          try {\r\n            window.renderLiveChat(containerId, liveChatProps);\r\n            widgetRendered = true;\r\n          } catch (e) {\r\n            // ignore and still show\r\n          }\r\n          showChat();\r\n          return;\r\n        }\r\n\r\n        if (tries >= 40) clearInterval(t);\r\n      }, 100);\r\n    }\r\n\r\n    function injectScriptOnceAndRender() {\r\n      const liveChatProps = getLiveChatConfig();\r\n      const endpoint = liveChatProps.chatScriptURL;\r\n      if (!endpoint) return;\r\n\r\n      if (scriptInjected) {\r\n        if (widgetRendered) showChat();\r\n        else renderWidgetWhenReady();\r\n        return;\r\n      }\r\n\r\n      const existing = document.querySelector(\r\n        `script[type=\"module\"][src=\"${endpoint}\"]`\r\n      );\r\n      if (existing) {\r\n        scriptInjected = true;\r\n        renderWidgetWhenReady();\r\n        return;\r\n      }\r\n\r\n      const script = document.createElement(\"script\");\r\n      script.type = \"module\";\r\n      script.src = endpoint;\r\n      script.async = true;\r\n\r\n      script.onload = function () {\r\n        scriptInjected = true;\r\n        renderWidgetWhenReady();\r\n      };\r\n\r\n      document.body.appendChild(script);\r\n    }\r\n\r\n    function onRouteChange() {\r\n      if (shouldShowChatNow()) {\r\n        ensureContainer();\r\n        injectScriptOnceAndRender();\r\n        showChat();\r\n      } else {\r\n        hideChat();\r\n      }\r\n    }\r\n\r\n    // keep your old API name (hide is safer than remove)\r\n    window.removeLiveChatWidget = hideChat;\r\n\r\n    /* -----------------------------\r\n       SPA NAVIGATION DETECTION\r\n    ------------------------------*/\r\n    function installSpaNavHooksOnce() {\r\n      if (window.__liveChatSpaHookInstalled) return;\r\n      window.__liveChatSpaHookInstalled = true;\r\n\r\n      const fire = () => window.dispatchEvent(new Event(\"spa:navigation\"));\r\n\r\n      const _pushState = history.pushState;\r\n      history.pushState = function () {\r\n        const ret = _pushState.apply(this, arguments);\r\n        fire();\r\n        return ret;\r\n      };\r\n\r\n      const _replaceState = history.replaceState;\r\n      history.replaceState = function () {\r\n        const ret = _replaceState.apply(this, arguments);\r\n        fire();\r\n        return ret;\r\n      };\r\n\r\n      window.addEventListener(\"popstate\", fire);\r\n      window.addEventListener(\"hashchange\", fire);\r\n    }\r\n\r\n    function init() {\r\n      installSpaNavHooksOnce();\r\n      window.addEventListener(\"spa:navigation\", onRouteChange);\r\n      onRouteChange();\r\n    }\r\n\r\n    if (document.readyState === \"loading\") {\r\n      document.addEventListener(\"DOMContentLoaded\", init);\r\n    } else {\r\n      init();\r\n    }\r\n  })();\r\n</script>\r\n","description":"Get diagnosis and treatment in North Carolina for all types of adrenal disorders from UNC Health endocrinologists near you.","contentType":"general","pagePath":"/care-services/areas-of-care/diabetes-endocrinology/adrenal-disorders.model.json","url":"https://www.unchealth.org/care-services/areas-of-care/diabetes-endocrinology/adrenal-disorders","title":"Adrenal Disorders | North Carolina","tags":[],"schema":[],"language":"en",":type":"unchealth/components/core/page",":itemsOrder":["root"],":items":{"root":{":itemsOrder":["experiencefragment-header","subnav","responsivegrid_header","responsivegrid","responsivegrid_footer","experiencefragment-footer"],":items":{"experiencefragment-header":{":type":"unchealth/components/core/experiencefragment",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid","logo"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["global_alerts","global_header"],":items":{"global_alerts":{"id":"global-alerts-247e2869c5","i18n":{"globalAlertsGeneralLabel":"General Alerts","globalAlertsPriorityLabel":"Priority Alerts"},":type":"unchealth/components/content/global-alerts","dataLayer":{"global-alerts-247e2869c5":{"@type":"unchealth/components/content/global-alerts","repo:modifyDate":"2026-02-16T17:18:37Z"}}},"global_header":{"id":"global-header-ec735ace35","logoLink":"/home","myChartCta":{"id":"global-header-ec735ace35","label":"My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"unchealth/components/content/global-header","dataLayer":{"global-header-ec735ace35":{"@type":"unchealth/components/content/global-header","repo:modifyDate":"2025-04-28T19:39:38Z"}}},"primaryNavItems":[{"link":"/care-services","featureCard":{":type":"nt:unstructured",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["nav_feauture_card_co"],":items":{"nav_feauture_card_co":{"id":"nav-feauture-card-9512a184c6","image":{"id":"nav-feauture-card-9512a184c6","altText":"Parents carrying son on shoulders on beach vacation","defaultImgSrc":"/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"/content/unchealth/us/en/care-services/areas-of-care/primary-care","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":4947,"width":7421,"srcTitle":"Parents carrying son on shoulders on beach vacation","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-9512a184c6":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:10:11Z"}}},"headline":"Looking for Primary Care?","description":"Learn about the different primary care options available at UNC Health and how to find a healthcare provider.","cta":{"id":"nav-feauture-card-9512a184c6","label":"View Details","descriptiveText":"About UNC Health's Primary Care Options","href":"/care-services/areas-of-care/primary-care","target":"_self","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-9512a184c6":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:10:11Z"}}},":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-9512a184c6":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:10:11Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}},"title":"Care & Services","items":[{"title":"Ways to Schedule Care","link":"/care-services/ways-to-schedule-care","target":null},{"title":"Areas of Care","link":"/care-services/areas-of-care","target":null},{"title":"Find a Doctor","link":"/care-services/doctors","target":null},{"title":"Locations","link":"/care-services/locations","target":null},{"title":"Urgent Care","link":"/care-services/urgent-care","target":"_self"},{"title":"Emergency & Trauma","link":"/care-services/emergency-trauma","target":null},{"title":"Virtual Care","link":"/care-services/virtual-care","target":null}]},{"link":"/living-well","featureCard":{":type":"nt:unstructured",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["nav_feauture_card_co"],":items":{"nav_feauture_card_co":{"id":"nav-feauture-card-4b067e57a7","image":{"id":"nav-feauture-card-4b067e57a7","altText":"Happy senior people after yoga sport class having fun sitting outdoors in park city","defaultImgSrc":"/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"/content/unchealth/us/en/living-well/classes-events","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":2626,"width":3940,"srcTitle":"Happy senior people after yoga sport class having fun sitting outdoors in park city","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-4b067e57a7":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:35:17Z"}}},"headline":"Looking for Classes & Events?","description":"Learn where to find support groups and classes across UNC Health’s system.","cta":{"id":"nav-feauture-card-4b067e57a7","label":"View Details","descriptiveText":" about Classes and Events","href":"/living-well/classes-events","target":"_self","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-4b067e57a7":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:35:17Z"}}},":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-4b067e57a7":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:35:17Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}},"title":"Living Well","items":[{"title":"Nutrition & Recipes","link":"/living-well/nutrition-recipes","target":null},{"title":"Health Talk","link":"/living-well/health-talk","target":null},{"title":"Spiritual Care","link":"/living-well/spiritual-care","target":null},{"title":"Wellness & Rehabilitation Centers ","link":"/living-well/wellness-rehabilitation-centers","target":null},{"title":"Classes & Events","link":"/living-well/classes-events","target":null}]},{"link":"/records-insurance","featureCard":{":type":"nt:unstructured",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["nav_feauture_card_co"],":items":{"nav_feauture_card_co":{"id":"nav-feauture-card-4c0e376664","image":{"id":"nav-feauture-card-4c0e376664","altText":"Person using calculator on top of a stack of bills.","defaultImgSrc":"/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"/content/unchealth/us/en/records-insurance/financial-assistance-programs","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3339,"width":5009,"srcTitle":"Tuition.","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-4c0e376664":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:41:04Z"}}},"headline":"Need help with a bill?","description":"Financial navigators can help explain our financial assistance options to help with your medical bills.","cta":{"id":"nav-feauture-card-4c0e376664","label":"View Details","descriptiveText":" about getting help with a medical bill","href":"/records-insurance/financial-assistance-programs","target":"_self","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-4c0e376664":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:41:04Z"}}},":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-4c0e376664":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:41:04Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}},"title":"Records & Insurance","items":[{"title":"Pay My Bill","link":"/records-insurance/pay-my-bill","target":"_self"},{"title":"Insurance","link":"/records-insurance/insurance","target":"_self"},{"title":"Billing & Insurance Terminology","link":"/records-insurance/billing-insurance-terminology","target":"_self"},{"title":"Standard Charges","link":"/records-insurance/standard-charges","target":"_self"},{"title":"Price Estimates Help","link":"/records-insurance/price-estimates","target":"_self"},{"title":"Financial Assistance Program","link":"/records-insurance/financial-assistance-programs","target":"_self"},{"title":"My UNC Chart Features","link":"/records-insurance/my-unc-chart","target":null},{"title":"Medical Records","link":"/records-insurance/medical-records","target":null},{"title":"Advance Care Planning","link":"/records-insurance/advance-care-planning","target":null},{"title":"NC Medicaid","link":"/records-insurance/nc-medicaid","target":null},{"title":"Financial Planning for Pregnancy & Birth Care | UNC Health","link":"/records-insurance/financial-planning-for-pregnancy-birth-care","target":null}]}],"quickLinks":[{"id":"-3858690faa","label":"How to Schedule Care","href":"/care-services/ways-to-schedule-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-3858690faa":{"@type":"nt:unstructured"}}},{"id":"-4ba244785d","label":"Pay My Bill","href":"/records-insurance/pay-my-bill","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4ba244785d":{"@type":"nt:unstructured"}}},{"id":"-6ff296837b","label":"Urgent & Emergency Care","href":"/care-services/urgent-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-6ff296837b":{"@type":"nt:unstructured"}}},{"id":"-b6caa8b8de","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-b6caa8b8de":{"@type":"nt:unstructured"}}}],"searchTerms":[{"searchTerm":"Sore Throat"},{"searchTerm":"Cancer Care"},{"searchTerm":"Orthopedics"},{"searchTerm":"Stomach Pains"},{"searchTerm":"Chronic Headaches"}],"geolocationLinkLabel":"Use My Location","secondaryLinks":[{"iconName":{"name":"directory","title":"Directory"},"cta":{"id":"-57026ff07f","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-57026ff07f":{"@type":"nt:unstructured"}}}},{"iconName":{"name":"profile","title":"Profile"},"cta":{"id":"-9b5cccacd6","label":"My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-9b5cccacd6":{"@type":"nt:unstructured"}}}}],"searchUrl":"/search","locationSearchUrl":"/care-services/locations","shareHeadline":"Share your location with us","shareCopy":"We can provide a more personalized experience for you when you share your location. We will use your location to give you the most relevant and helpful information possible, like UNC Health centers close to home, nearby search results, estimated travel distances, and more. Your location will be displayed on the upper right-hand corner of your screen and can be updated at any time.","updateCopy":"We will use your location to give you the most relevant and helpful information possible, like UNC Health centers close to home, healthcare professionals nearby, estimated travel distances, and more. Your location can be updated at any time.","errorHeadline":"Sorry, we can't seem to find you.","errorCopy":"We were not able to geolocate your device, to continue using our location based functionality please manually input your general location.","shareButton":"Share my location","v":"20221201","experienceKey":"unch-aem-site-search","locale":"en","endpoint":"https://liveapi.yext.com/v2/accounts/me/search/autocomplete","apiKey":"fcb2c208969a29f6bc66c93d5737793e",":type":"unchealth/components/content/global-header","dataLayer":{"global-header-ec735ace35":{"@type":"unchealth/components/content/global-header","repo:modifyDate":"2025-04-28T19:39:38Z"}}}},":type":"wcm/foundation/components/responsivegrid"},"logo":{":type":"nt:folder"}},":type":"wcm/foundation/components/responsivegrid"}}},"subnav":{"id":"sub-nav-203522e3d6","breadcrumbPages":[{"redirect":true,"pageName":"Care & Services","pageUrl":"/care-services"},{"pageName":"Areas of Care","pageUrl":"/care-services/areas-of-care"},{"pageName":"Diabetes and Endocrinology","pageUrl":"/care-services/areas-of-care/diabetes-endocrinology"}],"activePage":[{"pageName":"Adrenal Disorders","childrenPages":[],"hasChildren":false}],"hideSubnav":false,":type":"unchealth/components/content/sub-nav","dataLayer":{"sub-nav-203522e3d6":{"@type":"unchealth/components/content/sub-nav"}}},"responsivegrid_header":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["page_title_banner_co","content_grid_copy_co","background","image_grid_copy_copy","content_grid_copy_co_401504557","accordion_copy_copy_","background_1871200310","content_grid_copy_co_1315819898"],":items":{"page_title_banner_co":{"id":"page-title-banner-f673f80654","headline":"Adrenal Disorders","description":"<p>Adrenal glands create chemical signals called hormones that play important roles in your body. Disorders that affect these glands can cause a range of health problems.</p>\r\n","image":{"id":"page-title-banner-f673f80654","altText":"Young woman sitting and writing at a table, looking away thoughtfully","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-banner.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":794,"width":1000,"disableCsr":false,":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--small","dataLayer":{"page-title-banner-f673f80654":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-05-13T19:03:34Z"}}},"cta":{"label":"Find a doctor","descriptiveText":"Find a doctor","href":"https://www.unchealth.org/care-services/doctors?facetFilters=%7B%22acceptingPatients%22%3A%5B%22%7B%5C%22acceptingNewPatients%5C%22%3A%7B%5C%22%24eq%5C%22%3Atrue%7D%7D%22%5D%2C%22specialties%22%3A%5B%22%7B%5C%22c_answersSpecialty.name%5C%22%3A%7B%5C%22%24eq%5C%22%3A%5C%22Endocrinology%2C+Diabetes+and+Metabolism%5C%22%7D%7D%22%5D%7D","target":"_self","disableCsr":false},"secondaryCta":{"label":null,"descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--small","dataLayer":{"page-title-banner-f673f80654":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-05-13T19:03:34Z"}}},"content_grid_copy_co":{"id":"content-grid-2861adba51",":type":"unchealth/components/containers/content-grid",":items":{"classic_card":{"id":"classic-card-b8ada7298d","image":{"id":"classic-card-b8ada7298d","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-b8ada7298d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-13T15:29:38Z"}}},"headline":"Summary: Adrenal disorder care at UNC Health","headlineLevel":"h2","subheading":"Expect the best care available","description":"<ul>\r\n<li>Adrenal disorders make you produce too much or too little of certain hormones.</li>\r\n<li>Adrenal hormones regulate your blood pressure, drive your response to stress, balance your immune system and more.</li>\r\n<li>Treatment could mean receiving replacement hormones or surgery to remove a tumor.</li>\r\n<li>At UNC Health, your adrenal disorder care will be tailored to your needs.</li>\r\n</ul>\r\n","cta":{"id":"classic-card-b8ada7298d","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-b8ada7298d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-13T15:29:38Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-b8ada7298d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-13T15:29:38Z"}}}},":itemsOrder":["classic_card"],"appliedCssClassNames":"topSpacing--none bottomSpacing--small","dataLayer":{"content-grid-2861adba51":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2025-08-26T13:33:28Z"}}},"background":{"id":"background-d10c00f8f6",":type":"unchealth/components/containers/background",":items":{"content_grid_4081799":{"id":"content-grid-636fff5d0e",":type":"unchealth/components/containers/content-grid",":items":{"rich_text":{"id":"rich-text-6f7498c654","content":"<h2>What are adrenal disorders?</h2>\r\n<p>Disorders that affect the adrenal glands cause them to make either too much or too little of a certain hormone. These triangle-shaped organs attached to the top of your kidneys produce hormones that impact everything from blood pressure and sleep to how your body handles inflammation and how it matures.</p>\r\n","cta":{"id":"rich-text-6f7498c654","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-6f7498c654":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T15:30:55Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-6f7498c654":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T15:30:55Z"}}}},":itemsOrder":["rich_text"],"appliedCssClassNames":"topSpacing--none bottomSpacing--large","dataLayer":{"content-grid-636fff5d0e":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-04-27T19:21:51Z"}}},"image_grid_copy_copy":{"id":"image-grid-ef2290022b","headline":"What hormones do the adrenal glands produce?","description":"<div>The adrenal glands make these important hormones:</div>\r\n<ul>\r\n<li><b>Cortiso</b>l affects how you handle stress and how you sleep and helps regulate your blood pressure.</li>\r\n<li><b>Aldosterone</b> helps regulate your blood pressure by controlling how much sodium and potassium is released into your blood.</li>\r\n<li><b>Dehydroepiandrosterone</b> becomes sex hormones like testosterone and estrogen and affects your mood and energy level.</li>\r\n<li><b>Adrenaline</b> is released during times of stress, triggering the “fight or flight” reaction and preparing your body for action.</li>\r\n</ul>\r\n","images":[{"id":"-591b768b08","altText":"Medical illustration of adrenal glands","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/areas-of-care/endocrinology-diabetes/img-aoc-endocrine-adrenal-disorders-med-illustration.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":667,"width":1000,"disableCsr":false,":type":"nt:unstructured","dataLayer":{"-591b768b08":{"@type":"nt:unstructured"}}}],"cta":{"id":"image-grid-ef2290022b","style":"secondary","descriptiveText":"Find a Doctor","target":"_self","disableCsr":false,":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--medium bottomSpacing--small","dataLayer":{"image-grid-ef2290022b":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-13T19:03:09Z"}}},":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--medium bottomSpacing--small","dataLayer":{"image-grid-ef2290022b":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-13T19:03:09Z"}}},"content_grid_1934225":{"id":"content-grid-6fbbaf3ac2","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headline":"What are the types of adrenal disorders?","headingLevel":"h2","description":"<p>Though the causes may vary, all adrenal gland disorders cause your body to make too much or too little of an important hormone. These hormone imbalances cause health problems.</p>\r\n",":type":"unchealth/components/containers/content-grid",":items":{"utility_card":{"id":"utility-card-809dc3258e","size":"large","icon":{"name":null,"title":null},"description":"<p>Addison’s disease is a chronic condition that happens when your adrenal glands don’t produce enough of the hormones cortisol and aldosterone. The disease can cause nausea, vomiting, abdominal pain and fatigue.</p>\r\n","cta":{"label":"Addison’s disease","descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/utility-card","dataLayer":{"utility-card-809dc3258e":{"@type":"unchealth/components/content/utility-card","repo:modifyDate":"2026-05-13T15:43:47Z"}}},"utility_card_1531288386":{"id":"utility-card-90b4ca6bb7","size":"large","icon":{"name":null,"title":null},"description":"<p>Also known as hypercortisolism, Cushing syndrome occurs when the body is making too much of the hormone cortisol. Too much cortisol can increase your breathing rate and blood pressure.</p>\r\n","cta":{"label":"Cushing syndrome","descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/utility-card","dataLayer":{"utility-card-90b4ca6bb7":{"@type":"unchealth/components/content/utility-card","repo:modifyDate":"2026-05-13T15:44:17Z"}}},"utility_card_97093943":{"id":"utility-card-a985ca5c5b","size":"large","icon":{"name":null,"title":null},"description":"<p>Congenital adrenal hyperplasia is a group of disorders that interfere with how your adrenal glands make cortisol, aldosterone and androgen. It may alter how your sexual organs develop and cause infertility.</p>\r\n","cta":{"label":"Congenital adrenal hyperplasia","descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/utility-card","dataLayer":{"utility-card-a985ca5c5b":{"@type":"unchealth/components/content/utility-card","repo:modifyDate":"2026-05-13T15:44:33Z"}}},"utility_card_444646583":{"id":"utility-card-457f0e9364","size":"large","icon":{"name":null,"title":null},"description":"<p>Primary aldosteronism, also known as Conn’s syndrome, is caused when the body makes too much of the hormone aldosterone, causing high blood pressure and low potassium in the blood.</p>\r\n","cta":{"label":"Primary aldosteronism","descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/utility-card","dataLayer":{"utility-card-457f0e9364":{"@type":"unchealth/components/content/utility-card","repo:modifyDate":"2026-05-13T15:44:50Z"}}}},":itemsOrder":["utility_card","utility_card_1531288386","utility_card_97093943","utility_card_444646583"],"appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"content-grid-6fbbaf3ac2":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-05-13T15:36:33Z"}}}},":itemsOrder":["content_grid_4081799","image_grid_copy_copy","content_grid_1934225"],"appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"background-d10c00f8f6":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-13T15:30:10Z"}}},"image_grid_copy_copy":{"id":"image-grid-eb47a567a3","headline":"Your adrenal disorder care team","description":"<p>UNC Health care teams are based on your needs. You can trust our providers to listen to your concerns and use the best tools available to create a treatment plan designed for you.</p>\r\n","images":[{"id":"-938faa983e","altText":"Physicians looking at results on clipboard","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":564,"width":800,"disableCsr":false,":type":"nt:unstructured","dataLayer":{"-938faa983e":{"@type":"nt:unstructured"}}}],"cta":{"id":"image-grid-eb47a567a3","style":"secondary","label":"Find a doctor","descriptiveText":"Find a Doctor","href":"https://www.unchealth.org/care-services/doctors?facetFilters=%7B%22acceptingPatients%22%3A%5B%22%7B%5C%22acceptingNewPatients%5C%22%3A%7B%5C%22%24eq%5C%22%3Atrue%7D%7D%22%5D%2C%22specialties%22%3A%5B%22%7B%5C%22c_answersSpecialty.name%5C%22%3A%7B%5C%22%24eq%5C%22%3A%5C%22Endocrinology%2C+Diabetes+and+Metabolism%5C%22%7D%7D%22%5D%7D","target":"_blank","disableCsr":false,":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"image-grid-eb47a567a3":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-13T15:46:55Z"}}},":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"image-grid-eb47a567a3":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-13T15:46:55Z"}}},"content_grid_copy_co_401504557":{"id":"content-grid-92c3cf86d3","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show all","visibilityCtaCollapseLabel":"Show less","visibilityCtaStyle":"secondary","headingLevel":"h2",":type":"unchealth/components/containers/content-grid",":items":{"rich_text_copy_330034922":{"id":"rich-text-e84097f91d","content":"<h4>Endocrinologist</h4>\r\n<p>An endocrinologist is a doctor who diagnoses and treats disorders of the endocrine system, including diabetes, abnormal function and tumors of the endocrine glands, and thyroid cancer.</p>\r\n","cta":{"id":"rich-text-e84097f91d","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-e84097f91d":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:04:15Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-e84097f91d":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:04:15Z"}}},"rich_text_copy_1645779601":{"id":"rich-text-d0605f034a","content":"<h4>Endocrine surgeon</h4>\r\n<p>An endocrine surgeon might remove your adrenal gland or operate to take out a tumor on your gland.</p>\r\n","cta":{"id":"rich-text-d0605f034a","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-d0605f034a":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:04:51Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-d0605f034a":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:04:51Z"}}},"rich_text":{"id":"rich-text-4e43d3942e","content":"<h4>Oncologist</h4>\r\n<p>If there is a cancerous tumor affecting your adrenal glands, an oncologist (cancer doctor) will help diagnose the disease and manage your treatment.</p>\r\n","cta":{"id":"rich-text-4e43d3942e","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-4e43d3942e":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:06:32Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-4e43d3942e":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:06:32Z"}}},"rich_text_copy_1346334751":{"id":"rich-text-c5ba62b518","content":"<h4>Primary care physician</h4>\r\n<p>A primary care physician is the doctor you see first for most health needs. They help take care of your overall health and can refer you to a specialist when needed.</p>\r\n","cta":{"id":"rich-text-c5ba62b518","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-c5ba62b518":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:06:54Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-c5ba62b518":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:06:54Z"}}}},":itemsOrder":["rich_text_copy_330034922","rich_text_copy_1645779601","rich_text","rich_text_copy_1346334751"],"appliedCssClassNames":"topSpacing--none bottomSpacing--small sideMargins--standard","dataLayer":{"content-grid-92c3cf86d3":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-05-13T18:03:52Z"}}},"accordion_copy_copy_":{"headline":"Frequently asked questions","headingLevel":"h2","singleExpansion":false,"appliedCssClassNames":"topSpacing--medium bottomSpacing--small",":itemsOrder":["item_1748882950922","item_1748882953947"],":items":{"item_1748882950922":{"id":"rich-text-ccd50393e6","content":"<p>Causes of adrenal disorders depend on the type but could be any of the following:</p>\r\n<ul>\r\n<li>Autoimmune diseases&nbsp;</li>\r\n<li>A problem with another gland that affects how the adrenal glands work&nbsp;</li>\r\n<li>Infections&nbsp;</li>\r\n<li>Your genetic background&nbsp;</li>\r\n<li>Tumors</li>\r\n</ul>\r\n","cta":{"id":"rich-text-ccd50393e6","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-ccd50393e6":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:08:25Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-ccd50393e6":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:08:25Z"}},"cq:panelTitle":"What causes adrenal disorders?"},"item_1748882953947":{"id":"rich-text-f72edd9f7d","content":"<p>Endocrinologists are doctors who specialize in the endocrine system, a series of organs and glands that produce chemical signals called hormones that help the body work the way it should. Problems with the endocrine system cause the disorders that endocrinologists treat, including diabetes, thyroid issues and infertility.&nbsp;</p>\r\n","cta":{"id":"rich-text-f72edd9f7d","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-f72edd9f7d":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:08:35Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-f72edd9f7d":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:08:35Z"}},"cq:panelTitle":"What does an endocrinologist do?"}},":type":"unchealth/components/containers/accordion"},"background_1871200310":{"id":"background-ae22c98987",":type":"unchealth/components/containers/background",":items":{"content_grid_copy_co":{"id":"content-grid-7b49e596c2","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headingLevel":"h2",":type":"unchealth/components/containers/content-grid",":items":{"task_card":{"id":"task-card-a9d0fa4eee","headline":"Find a doctor","headingLevel":"h2","description":"There’s a partner for you wherever you are on your health journey. ","illustration":{"name":"urgentCare","title":"Urgent Care"},"cta":{"id":"task-card-a9d0fa4eee","label":"View providers","descriptiveText":"View Providers","href":"https://www.unchealth.org/care-services/doctors?facetFilters=%7B%22acceptingPatients%22%3A%5B%22%7B%5C%22acceptingNewPatients%5C%22%3A%7B%5C%22%24eq%5C%22%3Atrue%7D%7D%22%5D%2C%22specialties%22%3A%5B%22%7B%5C%22c_answersSpecialty.name%5C%22%3A%7B%5C%22%24eq%5C%22%3A%5C%22Endocrinology%2C+Diabetes+and+Metabolism%5C%22%7D%7D%22%5D%7D","target":"_blank","disableCsr":false,":type":"unchealth/components/content/task-card","dataLayer":{"task-card-a9d0fa4eee":{"@type":"unchealth/components/content/task-card","repo:modifyDate":"2026-05-13T18:09:29Z"}}},":type":"unchealth/components/content/task-card","dataLayer":{"task-card-a9d0fa4eee":{"@type":"unchealth/components/content/task-card","repo:modifyDate":"2026-05-13T18:09:29Z"}}},"task_card_1607752336":{"id":"task-card-b3a64a8562","headline":"Find a location","headingLevel":"h2","description":"Get compassionate care throughout North Carolina with UNC Health. ","illustration":{"name":"virtualCare","title":"Virtual Care"},"cta":{"id":"task-card-b3a64a8562","label":"Search locations","descriptiveText":"Search Locations","href":"https://www.unchealth.org/care-services/locations?specialties=SPEC-12","target":"_blank","disableCsr":false,":type":"unchealth/components/content/task-card","dataLayer":{"task-card-b3a64a8562":{"@type":"unchealth/components/content/task-card","repo:modifyDate":"2026-05-13T18:09:45Z"}}},":type":"unchealth/components/content/task-card","dataLayer":{"task-card-b3a64a8562":{"@type":"unchealth/components/content/task-card","repo:modifyDate":"2026-05-13T18:09:45Z"}}}},":itemsOrder":["task_card","task_card_1607752336"],"appliedCssClassNames":"topSpacing--small bottomSpacing--medium","dataLayer":{"content-grid-7b49e596c2":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2025-11-24T16:25:29Z"}}},"tab_container_copy_c":{"id":"tab-container-631121000a","headline":"Where are you on your care journey? ","description":"<p>You may be wondering if your symptoms are from a problem with your adrenal gland. Or you may need a second opinion. Wherever you are, UNC Health is here for you with complete, compassionate care.</p>\r\n",":type":"unchealth/components/containers/tab-container",":items":{"item_1748881429197":{"id":"tab-set-dc5820e5b4","tabTitle":"Diagnosis",":type":"unchealth/components/containers/tab-set",":items":{"item_1748881467638":{"id":"rich-text-d03b184f8b","content":"<h3>I’m looking for a diagnosis.</h3>\r\n<p>Finding out whether the symptoms you’re experiencing are from an adrenal gland disorder is a complicated task. Trust our experts to get it right.</p>\r\n<h4>What are the symptoms of an adrenal disorder?</h4>\r\n<p>Adrenal disorder symptoms depend on what type of disorder it is. Disorders that affect your sex hormones affect the onset of puberty and menstrual cycles. Disorders that affect how your body responds to stress may increase your heart rate and cause headaches.</p>\r\n<p>Other common symptoms include:</p>\r\n<ul>\r\n<li>Increased thirst</li>\r\n<li>Blood pressure changes</li>\r\n<li>Fatigue, or feeling very tired</li>\r\n<li>Changes in blood sugar level</li>\r\n<li>Vision loss</li>\r\n<li>Mood changes</li>\r\n</ul>\r\n<h4>How are adrenal disorders diagnosed?</h4>\r\n<p>Your doctor may screen for adrenal disorders with tests on your blood, urine or saliva. They may recommend imaging tests like a computed tomography (CT) or magnetic resonance imaging (MRI) scan to check for a tumor on your adrenal gland.</p>\r\n","cta":{"id":"rich-text-d03b184f8b","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-d03b184f8b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:12:31Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-d03b184f8b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:12:31Z"}}}},":itemsOrder":["item_1748881467638"],"dataLayer":{"tab-set-dc5820e5b4":{"@type":"unchealth/components/containers/tab-set","repo:modifyDate":"2025-12-19T00:50:51Z"}}},"item_1748881439054":{"id":"tab-set-fd0387d35e","tabTitle":"Care & treatment",":type":"unchealth/components/containers/tab-set",":items":{"rich_text":{"id":"rich-text-fd1e857795","content":"<h3>I’m looking for care and treatment.</h3>\r\n<p>Problems with adrenal gland hormones can cause a range of health issues. Your treatment plan will be designed to help you feel better.</p>\r\n<h4>How are adrenal disorders treated?</h4>\r\n<p>Treating your adrenal disorder may mean medicine to stabilize your hormone levels. If a tumor is causing your condition, you may have&nbsp;<a href=\"https://www.unchealth.org/care-services/areas-of-care/surgical-care\">surgery</a> or <a href=\"https://www.unchealth.org/care-services/areas-of-care/cancer-care/chemotherapy-and-radiation-treatment\">radiation therapy</a> to remove it.</p>\r\n<h4>Can I reduce my risk of having an adrenal disorder?</h4>\r\n<p>Some adrenal disorders are caused by factors that are out of your control, like autoimmune issues or infections. You can lower the risk of some other adrenal disorders by maintaining a healthy lifestyle, reducing stress and avoiding environmental toxins.</p>\r\n","cta":{"id":"rich-text-fd1e857795","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-fd1e857795":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:20:04Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-fd1e857795":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:20:04Z"}}}},":itemsOrder":["rich_text"],"dataLayer":{"tab-set-fd0387d35e":{"@type":"unchealth/components/containers/tab-set","repo:modifyDate":"2026-05-06T20:28:35Z"}}},"item_1748881440435":{"id":"tab-set-588070703d","tabTitle":"Post-treatment",":type":"unchealth/components/containers/tab-set",":items":{"item_1748881847532":{"id":"rich-text-db4c8c588b","content":"<h3>I’ve been diagnosed and treated.</h3>\r\n<p>Our commitment to you isn’t over when treatment is complete.</p>\r\n<h4>What post-treatment care is offered for adrenal disorders?</h4>\r\n<p>After treatment, you will continue to meet regularly with your doctor to talk about how you are feeling. You may also get regular testing. As a UNC Health patient, you’ll have access to wellness, nutrition, exercise and rehabilitation resources.&nbsp;</p>\r\n","cta":{"id":"rich-text-db4c8c588b","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-db4c8c588b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:20:57Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-db4c8c588b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-13T18:20:57Z"}}}},":itemsOrder":["item_1748881847532"],"dataLayer":{"tab-set-588070703d":{"@type":"unchealth/components/containers/tab-set","repo:modifyDate":"2026-05-06T20:28:42Z"}}}},":itemsOrder":["item_1748881429197","item_1748881439054","item_1748881440435"],"appliedCssClassNames":"topSpacing--default bottomSpacing--none","dataLayer":{"tab-container-631121000a":{"@type":"unchealth/components/containers/tab-container","repo:modifyDate":"2026-05-13T18:11:26Z"}}}},":itemsOrder":["content_grid_copy_co","tab_container_copy_c"],"appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"background-ae22c98987":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-13T18:08:55Z"}}},"content_grid_copy_co_1315819898":{"id":"content-grid-0be10502d0","gridGap":"default","columnCount":1,"mobileColumnCount":1,"visibilityCtaStyle":"secondary","headline":"Why choose UNC Health?","headingLevel":"h3",":type":"unchealth/components/containers/content-grid",":items":{"image_card":{"id":"image-card-de44c2d3ba","headline":"Endocrine care for North Carolinians","description":"<p>UNC Health physician-scientists in endocrinology and metabolism deliver care to thousands of people each year in our hospitals and clinics while also conducting research with the UNC School of Medicine. Specialists in the UNC Health system care for patients with endocrine disorders throughout North Carolina and can access leading-edge treatments.</p>\r\n","image":{"id":"image-card-de44c2d3ba","altText":"image of gloved provider using microscope","defaultImgSrc":"/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":668,"width":1000,"disableCsr":false,":type":"unchealth/components/content/image-card","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"image-card-de44c2d3ba":{"@type":"unchealth/components/content/image-card","repo:modifyDate":"2026-05-13T18:22:02Z"}}},"hideExpandText":true,":type":"unchealth/components/content/image-card","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"image-card-de44c2d3ba":{"@type":"unchealth/components/content/image-card","repo:modifyDate":"2026-05-13T18:22:02Z"}}}},":itemsOrder":["image_card"],"appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"content-grid-0be10502d0":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-02-12T17:12:36Z"}}}},":type":"wcm/foundation/components/responsivegrid"},"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":[],":items":{},":type":"wcm/foundation/components/responsivegrid"},"responsivegrid_footer":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":[],":items":{},":type":"wcm/foundation/components/responsivegrid"},"experiencefragment-footer":{":type":"unchealth/components/core/experiencefragment",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["global_footer","gsight_survey"],":items":{"global_footer":{"id":"global-footer-3cffb99886","logoLink":"/home","address":"101 Manning Drive\r\nChapel Hill, NC 27514","mapLinkLabel":"Open in Maps","phoneNumber":"984-974-1000","socialIcons":[{"platform":"facebook","descriptiveText":"facebook","href":"https://www.facebook.com/unchealthcare","target":"_blank"},{"platform":"twitter","descriptiveText":"Twitter","href":"https://twitter.com/unc_health_care","target":"_blank"},{"platform":"instagram","descriptiveText":"Instagram","href":"https://www.instagram.com/unchealth/","target":"_blank"},{"platform":"youtube","descriptiveText":"Youtube","href":"https://www.youtube.com/@UNCHealth","target":"_blank"},{"platform":"linkedIn","descriptiveText":"LinkedIn","href":"https://www.linkedin.com/company/unchealth/","target":"_blank"}],"leftPanelLinks":[{"id":"-bd012795c4","label":"News & Media","href":"https://news.unchealthcare.org/?_ga=2.176331429.1459326530.1662751404-1169189291.1662751404","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-bd012795c4":{"@type":"nt:unstructured"}}},{"id":"-9d973391e6","label":"Sitemap","href":"/sitemap","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-9d973391e6":{"@type":"nt:unstructured"}}}],"topLinks":[{"id":"-5b58cf7b37","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-5b58cf7b37":{"@type":"nt:unstructured"}}},{"id":"-94ae0bb328","label":"Contact Us","href":"/contact-us","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-94ae0bb328":{"@type":"nt:unstructured"}}},{"id":"-70c16d5fc8","label":"Clinical Trials","href":"https://researchforme.unc.edu/index.php/en/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-70c16d5fc8":{"@type":"nt:unstructured"}}},{"id":"-027c5a6cbf","label":"Sign In to My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-027c5a6cbf":{"@type":"nt:unstructured"}}}],"mainLinks":[{"title":"About US","links":[{"id":"-c119369a8f","label":"Who We Are","href":"/about-us/who-we-are","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c119369a8f":{"@type":"nt:unstructured"}}},{"id":"-ae68a0d680","label":"Compliance Office","href":"/about-us/compliance-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ae68a0d680":{"@type":"nt:unstructured"}}},{"id":"-170a5aada2","label":"Privacy Office","href":"/about-us/privacy-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-170a5aada2":{"@type":"nt:unstructured"}}},{"id":"-76f471089f","label":"OHCA Members","href":"/about-us/ohca-members","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-76f471089f":{"@type":"nt:unstructured"}}},{"id":"-4d48f8eb53","label":"Price Transparency","descriptiveText":"View Standard Charges links for UNC Health hospitals","href":"/records-insurance/standard-charges","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4d48f8eb53":{"@type":"nt:unstructured"}}},{"id":"-da280cc973","label":"Accessibility at UNC Health","descriptiveText":"Accessibility at UNC Health link","href":"/about-us/accessibility-at-unc-health","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-da280cc973":{"@type":"nt:unstructured"}}},{"id":"-ed9254b7f6","label":"Financial Assistance","descriptiveText":"link to Financial Assistance page","href":"/records-insurance/financial-assistance-programs","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ed9254b7f6":{"@type":"nt:unstructured"}}},{"id":"-e85881b7e8","label":"Equal Employment Opportunity Policy Statement","descriptiveText":"link to EOO policy","href":"https://www.unchealthcare.org/app/files/public/415447ef-be77-45ae-bdab-e818ac20b001/pdf-system-unc-health-eeo-aa-statement.pdf","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-e85881b7e8":{"@type":"nt:unstructured"}}},{"id":"-902701dcc1","label":"AI and UNC Health","descriptiveText":"link to AI at UNC Health policy","href":"/about-us/ai-at-unc-health","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-902701dcc1":{"@type":"nt:unstructured"}}}]},{"title":"Medical & Clinical Professionals","links":[{"id":"-8197cb78eb","label":"Fellowship Program","href":"/for-medical-professionals/fellowship-program","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-8197cb78eb":{"@type":"nt:unstructured"}}},{"id":"-f8c62c9c60","label":"House Staff Council","href":"/for-medical-professionals/house-staff-council","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-f8c62c9c60":{"@type":"nt:unstructured"}}},{"id":"-39ac1e8132","label":"Professional Liability Insurance Verification","descriptiveText":"Link to Professional Liability Insurance Verification page","href":"/for-medical-professionals/professional-liability-insurance-verification","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-39ac1e8132":{"@type":"nt:unstructured"}}}]},{"title":"For UNC Health Employees","links":[{"id":"-7c3da72d64","label":"Well-being Program","href":"/for-unch-health-professionals/well-being-for-unc-health-teammates","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-7c3da72d64":{"@type":"nt:unstructured"}}},{"id":"-9286786a7c","label":"Epic@UNC Training ","href":"/for-unch-health-professionals/epic-training","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-9286786a7c":{"@type":"nt:unstructured"}}},{"id":"-36f0e219e4","label":"Working Forward","href":"/for-unch-health-professionals/working-forward","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-36f0e219e4":{"@type":"nt:unstructured"}}}]},{"title":"Supporting Our Community","links":[{"id":"-fb9f3c1f70","label":"Giving","href":"https://unchealthfoundation.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-fb9f3c1f70":{"@type":"nt:unstructured"}}},{"id":"-a03aaf70e7","label":"Caring for Our Communities","href":"/supporting-our-community/caring-for-our-communities","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-a03aaf70e7":{"@type":"nt:unstructured"}}}]}],"utilityLinks":[{"id":"-f03a73df5c","label":"Website Privacy Policy","href":"https://www.unchealthcare.org/app/files/public/6fe67aba-927b-4950-82ee-b5a3c4a81394/pdf-system-unc-health-website-privacy-policy.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-f03a73df5c":{"@type":"nt:unstructured"}}},{"id":"-8401fc7d4e","label":"Website Terms and Conditions","href":"https://www.unchealthcare.org/app/files/public/37e972c1-d9ba-4a00-a998-7699f14c4cb7/pdf-system-unc-health-websites-terms-and-conditions.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-8401fc7d4e":{"@type":"nt:unstructured"}}},{"id":"-24775e0ffd","label":"Notice of Privacy Practices","href":"https://www.unchealthcare.org/app/files/public/169/Notice-of-Privacy-Practice.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-24775e0ffd":{"@type":"nt:unstructured"}}},{"id":"-6c68aa2356","label":"Non-Discrimination Notice and Notice of Availability","href":"https://www.unchealthcare.org/app/files/public/7035/pdf-system-unc-health-care-nondiscrimination-notice.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-6c68aa2356":{"@type":"nt:unstructured"}}},{"id":"-27aa147969","label":"Surprise Billing and Good Faith Estimate Notices","href":"https://www.unchealthcare.org/app/files/public/1902c85a-5f29-4bd3-bb4d-2c906c48e769/pdf-system-surprise-billing-gfe-notice-english.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-27aa147969":{"@type":"nt:unstructured"}}},{"id":"-784b6edf09","label":"UNC Health SMS Terms and Conditions","descriptiveText":"Link to UNC Health SMS Terms and Conditions PDF","href":"https://www.unchealth.org/pdfs/legal-documents/pdf-system-unc-health-sms-terms-conditions.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-784b6edf09":{"@type":"nt:unstructured"}}}],"utilityLinksSpanish":[{"id":"-ad516cee2a","label":"Aviso de Praticas Privadas","href":"https://www.unchealthcare.org/app/files/public/170/Aviso-de-Practicas-Privadas.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ad516cee2a":{"@type":"nt:unstructured"}}},{"id":"-c85f54029b","label":"Aviso de no Discriminación y Aviso de Disponibilidad","href":"https://www.unchealthcare.org/app/files/public/61397723-4548-4dd8-be08-734a04e7b306/pdf-system-unc-health-care-aviso-de-no-discriminaci%C3%B3n.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c85f54029b":{"@type":"nt:unstructured"}}},{"id":"-0c2becbd0e","label":"Avisos de facturas médicas sorpresas y avisos de presupuestos de buena fe","href":"https://www.unchealthcare.org/app/files/public/5f731a2c-291f-42ad-9a00-b15f4aa36478/pdf-system-surprise-billing-gfe-notice-spanish.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-0c2becbd0e":{"@type":"nt:unstructured"}}}],"disclaimerLinks":[{"id":"-5bc9af1dbc","label":"Accessibility","href":"/about-us/accessibility-at-unc-health/language-accessibility-services/website-accessibility-statement","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-5bc9af1dbc":{"@type":"nt:unstructured"}}}],"copyright":"©2026 UNC Health. \r\nAll rights reserved.",":type":"unchealth/components/content/global-footer","dataLayer":{"global-footer-3cffb99886":{"@type":"unchealth/components/content/global-footer","repo:modifyDate":"2025-12-05T20:10:26Z"}}},"gsight_survey":{"id":"gsight-survey-172b30f322","samplingPercentage":50,"popupDelayInSeconds":50,"hideGSightSurvey":false,"clientId":"d790eed4-ab64-eb11-8272-12cf99399697",":type":"unchealth/components/content/gsight-survey","dataLayer":{"gsight-survey-172b30f322":{"@type":"unchealth/components/content/gsight-survey","repo:modifyDate":"2023-07-06T20:52:16Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}}},":type":"wcm/foundation/components/responsivegrid"}},":hierarchyType":"page",":path":"/content/unchealth/us/en/care-services/areas-of-care/diabetes-endocrinology/adrenal-disorders","dataLayer":{"page-88e5c2fea7":{"@type":"unchealth/components/core/page","repo:modifyDate":"2026-05-19T13:29:29Z"}}}