@model LittleShop.DTOs.BotRegistrationDto @{ ViewData["Title"] = "Register New Bot"; }

Register New Bot


@Html.AntiForgeryToken()
@if (ViewData.ModelState.IsValid == false) {
    @foreach (var error in ViewData.ModelState.Values.SelectMany(v => v.Errors)) {
  • @error.ErrorMessage
  • }
}
You can configure detailed settings after registration.
Cancel
Registration Information

After registering your bot, you will receive:

  • Bot ID: Unique identifier for your bot
  • API Key: Secret key for authentication (save this securely!)
  • Configuration: Access to manage bot settings

Bot Types:
  • Telegram: Telegram messenger bot
  • Discord: Discord server bot
  • WhatsApp: WhatsApp Business API
  • Signal: Signal messenger bot
  • Matrix: Matrix protocol bot
  • IRC: Internet Relay Chat bot
  • Custom: Custom implementation
@section Scripts { }