Skip to main content

Get revenue report for a specific period

GET 

https://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.

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());
Request Collapse all
Base URL
https://api.botsubscription.com
Parameters
— pathrequired
— pathrequired
— query
— query
— query
— query
ResponseClear

Click the Send API Request button above and see the response here!