Skip to main content

ListAggregatedTrafficReports

GET 

https://api.iot.telenor.com/iot-connect/reports/v1/traffic/aggregated/:domainId

List available aggregated traffic reports.

Request

Path Parameters

    domainId stringrequired

    Possible values: Value must match regular expression ^([A-Za-z0-9]{8}-){0,6}[A-Za-z0-9]{8}$

    Domain the resource belongs to. Used to determine which users have access to the resource.

Query Parameters

    startDate date

    Start date, written in YYYY-MM-DD or YYYY-MM format.

    endDate date

    End date, written in YYYY-MM-DD or YYYY-MM format.

Responses

List of aggregated traffic reports.

Schema
  • Array [
  • periodstring

    The period the report covers.

    Example: 2019-01
    resourcestring

    Path where the report can be downloaded.

    Example: /reports/traffic/aggregated/2019-01
    fileFormatstring

    The file format of the report.

    Example: gzip
    sizenumber

    Size of the report in bytes.

    Example: 1024
  • ]
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.iot.telenor.com/iot-connect/reports/v1/traffic/aggregated/:domainId");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.iot.telenor.com
Parameters
— pathrequired
— query
— query
ResponseClear

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