Activity
7 endpoints
POST /api/v5/artifacts/activity/get
Get Activity
Parameters:
| Name | In | Required | Description |
|---|---|---|---|
X-Api-Key | header | No | — |
authorization | header | No | — |
X-MCP | header | No | — |
Request body:
{
date_from?: `string` | `null`
date_to?: `string` | `null`
department_ids?: `string`[]
roles?: `string`[]
}Response:
{
sessions_count?: `integer`
active_profiles_count?: `integer`
logins_count?: `integer`
emulations_count?: `integer`
profile_summary?: `ProfileSummaryItem`[]
resources?: `ActivityResources`
analytics?: `AnalyticsFacets` | `null`
}POST /api/v5/artifacts/activity/search
Search Activity
Get activity session history (bottom table, paginated).
Parameters:
| Name | In | Required | Description |
|---|---|---|---|
X-Api-Key | header | No | — |
authorization | header | No | — |
X-MCP | header | No | — |
Request body:
{
date_from?: `string` | `null`
date_to?: `string` | `null`
department_ids?: `string`[]
roles?: `string`[]
active?: `boolean` | `null`
page?: `integer`
page_size?: `integer`
sort_order?: `string`
}Response:
{
data?: `SessionListItem`[]
total_count?: `integer`
page?: `integer`
page_size?: `integer`
total_pages?: `integer`
}POST /api/v5/artifacts/activity/problem
Create Problem
Create new problem entry.
Parameters:
| Name | In | Required | Description |
|---|---|---|---|
X-Api-Key | header | No | — |
authorization | header | No | — |
X-MCP | header | No | — |
Request body:
{
type: `string`
message: `string`
}Response:
{
problem_id: `string`
success: `boolean`
message: `string`
}POST /api/v5/artifacts/activity/refresh
Activity Refresh
Refresh activity materialized views and invalidate caches.
Parameters:
| Name | In | Required | Description |
|---|---|---|---|
X-Api-Key | header | No | — |
authorization | header | No | — |
X-MCP | header | No | — |
Response:
{
success: `boolean`
refreshed_views: `string`[]
invalidated_tags: `string`[]
}POST /api/v5/artifacts/activity/resolve
Resolve Problem
Resolve or unresolve a problem entry.
Parameters:
| Name | In | Required | Description |
|---|---|---|---|
X-Api-Key | header | No | — |
authorization | header | No | — |
X-MCP | header | No | — |
Request body:
{
problem_id: `string`
resolved?: `boolean`
}Response:
{
problem_id: `string`
resolved: `boolean`
updated_at: `string`
}POST /api/v5/artifacts/activity/export
Export Activity
Export all activity data as a clean, denormalized ZIP.
Parameters:
| Name | In | Required | Description |
|---|---|---|---|
X-Api-Key | header | No | — |
authorization | header | No | — |
X-MCP | header | No | — |
Response:
{
upload_id: `string`
file_name: `string`
row_count: `integer`
}POST /api/v5/artifacts/activity/docs
Get Activity Docs Endpoint
Get composed documentation for the activity analytics.
Parameters:
| Name | In | Required | Description |
|---|---|---|---|
X-Api-Key | header | No | — |
authorization | header | No | — |
X-MCP | header | No | — |
Request body:
{
entity_id?: `string` | `null`
}Response:
{
name: `string`
type: `string`
description: `string`
artifact?: `DocsResponse` | `null`
entries: `DocsResponse`[]
resources: `DocsResponse`[]
permissions: `OperationInfo`[]
api_operations: `OperationInfo`[]
page_metadata?: `DocsApiResponse` | `null`
}Last updated on