API Key Auth

This commit is contained in:
2026-01-01 15:45:29 -05:00
parent 0326c5142e
commit 546ef066f8

View File

@@ -1198,7 +1198,10 @@ class SystemHealthMonitor:
response = requests.post(
self.ticket_api_url,
json=ticket_payload,
headers={'Content-Type': 'application/json'}
headers = {
'Content-Type': 'application/json',
'Authorization': f'Bearer {self.CONFIG["TICKET_API_KEY"]}'
}
)
response_data = response.json()