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

_getActivityLogDaily

Gathers the Logs of a User's total Activity per day.

Parameters

activity_type

Sets the type of activity which will be returned:

  • 0 = All

  • 1 = Reads

  • 2 = Writes

user_id

The ID of an exact User who will have their Activity recorded, unless this parameter is set to 0, in which all User Activity regardless of ID is returned.

inactive

Sets if Inactive User Activity is also included (0 = No, 1 = Yes).

Example

FM_api('Users_getActivityLogDaily',[
    'activity_type'=>'2',
    'user_id'=>'113763',
    'inactive'=>'1'
    ]
);

Result

On Success

Last updated