events_events_volume_list
GET/api/v3//events/events/volume/
Get event volume for specified filters and timeframe
Request
Query Parameters
Possible values: [authorize_application
, configuration_error
, custom_
, email_sent
, flow_execution
, impersonation_ended
, impersonation_started
, invitation_used
, login
, login_failed
, logout
, model_created
, model_deleted
, model_updated
, password_set
, policy_exception
, policy_execution
, property_mapping_exception
, secret_rotate
, secret_view
, source_linked
, suspicious_request
, system_exception
, system_task_exception
, system_task_execution
, update_available
, user_write
]
Brand name
Context Authorized application
Context Model App
Context Model Name
Context Model Primary Key
7
Which field to use when ordering the results.
A search term.
Username
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
Possible values: [login
, login_failed
, logout
, user_write
, suspicious_request
, password_set
, secret_view
, secret_rotate
, invitation_used
, authorize_application
, source_linked
, impersonation_started
, impersonation_ended
, flow_execution
, policy_execution
, policy_exception
, property_mapping_exception
, system_task_execution
, system_task_exception
, system_exception
, configuration_error
, model_created
, model_updated
, model_deleted
, email_sent
, update_available
, custom_
]
[
{
"action": "login",
"time": "2024-07-29T15:51:28.071Z",
"count": 0
}
]
- application/json
- Schema
- Example (auto)
Schema
Validation Error
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (auto)
Schema
{
"detail": "string",
"code": "string"
}
Authorization: http
name: authentiktype: httpscheme: bearer
- 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, "/api/v3/events/events/volume/");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());