Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.28 KB

File metadata and controls

33 lines (21 loc) · 1.28 KB

XUMM.NET.SDK XUMM.NET.SDK

Receive webhook callbacks of XUMM in .NET / C# environments.

Install XUMM.NET.SDK.Webhooks in server-side Blazor App

  1. Create a new ASP.NET Core Blazor Server-App project.
  2. Install NuGet-package: XUMM.NET.SDK.Webhooks.
  3. Create an implementation of IXummWebhookProcessor, for example XummWebhookProcessor.
  4. Add the following code block before builder.Build() in Program.cs:
builder.Services.AddXummWebhooks<XummWebhookProcessor>();
  1. Add the following code block before app.Run() in Program.cs to map the Xumm Webhooks controller.:
app.MapXummControllerRoute();
  1. Hit F5: you're now running a completely empty Blazor server-side App with XUMM.NET.SDK.Webhooks.
  2. Start building your app. For reference, browse the XUMM.NET.ServerApp to see all the options.

Webhook URL

Create your app and set your webhook URL for callbacks at the XUMM Developer Console:

More information about the webhooks, etc. please check the XUMM API Docs: