Register a bot
POSThttps://api.botsubscription.com/v1/bot:bot_id/:api_key/bot
This endpoint allows you to register a new bot. The owner of the bot that owns the API key used for this call will also be registered as the owner and bill-payer for the new bot.
Request
Responses
- 201
- 402
- 409
The bot has been successfully registered.
The bill-payer (owner of the bot) has one or more unpaid bills. New bots cannot be created until all existing bills are paid. Open [@BotSubscriptionBot](https://t.me/BotSubscriptionBot?start=mybots) in Telegram and pay any outstanding bills.
The affiliate_id provided is already in use by another affiliate. Provide a unique affiliate_id.
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.botsubscription.com");
request.Headers.Add("Accept", "application/json");
var content = new StringContent(string.Empty);
content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear