Skip to content

Support Statistics

Operations Summary

Method Endpoint Description
GET /api/support-statistics/ List Support Statistics

List Support Statistics

1
2
3
4
http \
  GET \
  https://api.example.com/api/support-statistics/ \
  Authorization:"Token YOUR_API_TOKEN"
1
2
3
4
5
6
7
8
9
from waldur_api_client.client import AuthenticatedClient
from waldur_api_client.api.support_statistics import support_statistics_retrieve # (1)

client = AuthenticatedClient(
    base_url="https://api.example.com", token="YOUR_API_TOKEN"
)
response = support_statistics_retrieve.sync(client=client)

print(response)
  1. API Source: support_statistics_retrieve
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
import { supportStatisticsRetrieve } from 'waldur-js-client';

try {
  const response = await supportStatisticsRetrieve({
  auth: "Token YOUR_API_TOKEN"
});
  console.log('Success:', response);
} catch (error) {
  console.error('Error:', error);
}

200 -

Field Type
open_issues_count integer
closed_this_month_count integer
recent_broadcasts_count integer