For the complete documentation index, see llms.txt. This page is also available as Markdown.

UserActivities

Introduction

UserActivities track certain activities that the related User initiates and record the Department in which the activity took place.

Each UserActivity has a concrete type which defines the kind of activity that is tracked.

An activity is uniquely identified by the combination of the type and the related User. The associated Department reflects the user's most recently active location.

The fields created_at and updated_at indicate the time of the first and most recent occurrence of the activity, respectively.

Activities are only recorded through the use of the intratool application itself and not via the API.

Model Definition

Alias

userActivity

Relations

Key
Relation
Type
Relation Field(s)

user

Belongs to

user_id

department

Belongs to

department_id

Types

  • login - A login activity of the related User.

  • logout - A logout activity of the related User.

  • general - Any activity of the related User.

List

List visible UserActivities.

Definition

GET /api/user-activities

Request Keys

Key
Type
Default
Description

selects

string

All fields

Comma-separated fields to return.

relations

string

Default relations

Pipe-separated relations to include.

limit

integer

No limit

Maximum number of activities.

filter

object

No filters

Supported repository filters.

Example Request

Example Response

Show

Show one visible UserActivity.

Definition

GET /api/user-activities/{userActivity}

Route Parameters

Parameter
Type
Description

userActivity

integer

UserActivity ID.

Request Keys

Key
Type
Default
Description

selects

string

All fields

Comma-separated fields to return.

relations

string

Default relations

Pipe-separated relations to include.

Example Request

Example Response

Last updated