Query transaction log

Through this web service, the company's transaction log can be consulted.

Input parameters

ParameterTypeRequiredDescription
actionTextOptional

Type of action performed.

ADD.
EDIT.
DELETE.
CANCELLED.
LOGIN.
FINISHED.
LOGOUT.

moduleNumberOptional

Module number.

1: Assets
2: Human Resources
3: Third parties
4: Warehouses
5: Tasks
6: Monitoring
7: Automator
9: Virtual Disk
10: Configuration
11: Work requests
13: Material requests
14: Teams

sub_moduleNumberOptionalId of the submodule you want to filter by.
sinceTextOptionalInitial date of the event. Format:
'YYYY-MM-DDTHH:MM:SS-UTC'
Exemple:'2021-07-12T20:00:00-03'.
By default, no date filter is applied.
untilTextOptionalEnd date of the event.
Format: 'YYYY-MM-DDTHH:MM:SS-UTC' Example:'2021-07-12T20:00:00-03'.
By default, no date filter is applied
descriptionTextOptionalDescription of the action performed.

Output parameters

ParameterTypeDescription
event_dateTextDate of event (Date in UTC-0)
ip_addressTextIP from where the action was performed
nameTextName of the user who performed the action
emailTextemail of the user who performed the action
sub_module_descriptionTextSub module where the action took place
module_descriptionTextModule where the action took place
actionTextAction
descriptionjsonDescription of the action
data_actionjsonAction detailsDate of event (Date in UTC-0)
id_moduleIntegerModule number.
id_sub_moduleIntegerSubmodule ID.

Example:

Request: (GET)https://app.fracttal.com/api/transactions_log/

{
    "success": true,
    "message": "200",
    "data": [
        {
            "id": 120604,
            "id_company": 133,
            "id_account": 2,
            "event_date": "2020-02-25T20:19:54.260926+00:00",
            "ip_address": "181.42.37.173",
            "name": "RICARDO ROMAN",
            "email": "[email protected]",
            "id_module": 1,
            "id_submodule": 10,
            "sub_module_description": "REQUESTS",
            "module_description": "CONFIGURATION",
            "action": "LOGIN",
            "data_action": {
                "description": "Development",
                "is_active": true
            },
            "description": "Fracttal Demo"
        },
        {
            "id": 120603,
            "id_company": 133,
            "id_account": 2791,
            "event_date": "2020-02-25T20:18:35.588532+00:00",
            "ip_address": "190.215.52.171",
            "name": "Keivy Gonzalez",
            "email": "[email protected]",
            "id_module": 1,
            "id_submodule": 10,
            "sub_module_description": "REQUESTS",
            "module_description": "CONFIGURATION",
            "action": "LOGIN",
            "data_action": {
                "description": "Development",
                "is_active": true
            },
            "description": "Fracttal Demo"
        }
    ],
    "total": 2
}

CONECTION TEST

Response

Language
LoadingLoading…