https://github.com/panoramicdata/uk.nhs.api
A Nuget API for UK NHS Cyber Alerts
https://github.com/panoramicdata/uk.nhs.api
Last synced: 2 months ago
JSON representation
A Nuget API for UK NHS Cyber Alerts
- Host: GitHub
- URL: https://github.com/panoramicdata/uk.nhs.api
- Owner: panoramicdata
- License: mit
- Created: 2020-08-26T01:40:47.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2025-12-18T18:30:04.000Z (6 months ago)
- Last Synced: 2025-12-21T21:15:22.816Z (6 months ago)
- Language: C#
- Size: 195 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Uk.Nhs.CyberAlerts.Api
A Nuget package for the UK NHS Cyber Alerts.
[](https://www.nuget.org/packages/Uk.Nhs.CyberAlerts.Api/)
To use:
```C#
using Uk.Nhs.CyberAlerts.Api;
...
using var client = new CyberAlertClient();
// Get the first page of 10 alerts
var alertsPage = await client
.GetPageAsync(1)
.ConfigureAwait(false);
// Get a single alert
var alert = await client
.GetAsync("CC-3327")
.ConfigureAwait(false);