Skip to main content

Installation

dotnet add package ApiAlerts

Usage

using ApiAlerts;

var client = new ApiAlertsClient("YOUR-API-KEY");

// Simple notification
await client.Send(message: "Deployment successful");

// With all options
await client.Send(
    message: "New user signed up",
    channel: "developers",
    link: "https://dashboard.example.com/users/123",
    tags: new[] { "signup", "organic" }
);

Resources

GitHub Repository

Full documentation, examples, and source code.