Get revenue report for a specific period
GEThttps://api.botsubscription.com/v1/bot:bot_id/:api_key/salesForPeriod
Retrieve the total revenue generated and the number of sales for a specific period of time.
Request
Path Parameters
bot_id integerrequired
The unique identifier of the bot.
api_key stringrequired
The API key of the bot.
Query Parameters
from integer
The start date of the period to retrieve revenue data for. Must be UNIX timestamp in seconds.
to integer
The end date of the period to retrieve revenue data for. Must be UNIX timestamp in seconds.
currency string
The currency of the order. Must be a valid ISO 4217 currency code.
interval string
Possible values: [day
, week
, month
]
The interval to group the revenue data by. Must be one of the following values: day, week, month.
- 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");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear