Use this file to discover all available pages before exploring further.
The Zentra C# SDK provides convenient access to the Zentra API from .NET applications.
The checked-in C# wrapper currently exposes transfers, payments, virtual accounts, logs, and webhook verification. Cards, identity, customers, and wallet helpers are not exposed in the package shown in this repo.
[HttpPost("/webhooks")]public IActionResult HandleWebhook(){ using var reader = new StreamReader(Request.Body); var payload = reader.ReadToEnd(); var signature = Request.Headers["X-Zentra-Signature"]; if (client.Webhooks.VerifySignature(payload, signature, webhookSecret)) { // Process webhook return Ok("Verified"); } return BadRequest("Invalid signature");}