Fracttal →

Query transaction log

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

Input parameters

ParameterTypeRequiredDescription
actionTextOptionalType of action performed.

ADD.
EDIT.
DELETE.
CANCELLED.
LOGIN.
FINISHED.
LOGOUT.
moduleNumberOptionalModule 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

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)

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]",
            "sub_module_description": "REQUESTS",
            "module_description": "CONFIGURATION",
            "action": "LOGIN",
            "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]",
            "sub_module_description": "REQUESTS",
            "module_description": "CONFIGURATION",
            "action": "LOGIN",
            "description": "Fracttal Demo"
        },
        {
            "id": 120602,
            "id_company": 133,
            "id_account": 2791,
            "event_date": "2020-02-25T18:21:52.673409+00:00",
            "ip_address": "190.215.52.171",
            "name": "Keivy Gonzalez",
            "email": "[email protected]",
            "sub_module_description": "OUTPUTS",
            "module_description": "TASKS",
            "action": "EDIT",
            "description": "OTS-814-2020"
        },
        {
            "id": 120601,
            "id_company": 133,
            "id_account": 2791,
            "event_date": "2020-02-25T18:21:52.142159+00:00",
            "ip_address": "190.215.52.171",
            "name": "Keivy Gonzalez",
            "email": "[email protected]",
            "sub_module_description": "OUTPUTS",
            "module_description": "TASKS",
            "action": "EDIT",
            "description": "OTS-814-2020"
        },
        {
            "id": 120600,
            "id_company": 133,
            "id_account": 2791,
            "event_date": "2020-02-25T18:11:22.777973+00:00",
            "ip_address": "190.215.52.171",
            "name": "Keivy Gonzalez",
            "email": "[email protected]",
            "sub_module_description": "OUTPUTS",
            "module_description": "TASKS",
            "action": "EDIT",
            "description": "OTS-814-2020"
        },
        {
            "id": 120599,
            "id_company": 133,
            "id_account": 2791,
            "event_date": "2020-02-25T18:10:39.355786+00:00",
            "ip_address": "190.215.52.171",
            "name": "Keivy Gonzalez",
            "email": "[email protected]",
            "sub_module_description": "REQUESTS",
            "module_description": "CONFIGURATION",
            "action": "LOGIN",
            "description": "Fracttal Demo"
        },
        {
            "id": 120597,
            "id_company": 133,
            "id_account": 2386,
            "event_date": "2020-02-25T17:34:06.321871+00:00",
            "ip_address": "190.215.52.171",
            "name": "Ramón Toro",
            "email": "[email protected]",
            "sub_module_description": "REQUESTS",
            "module_description": "CONFIGURATION",
            "action": "LOGIN",
            "description": "Fracttal Demo"
        },
        {
            "id": 120596,
            "id_company": 133,
            "id_account": 2093,
            "event_date": "2020-02-25T15:23:39.200777+00:00",
            "ip_address": "190.215.52.171",
            "name": "Fernando Ahumada Baez",
            "email": "[email protected]",
            "sub_module_description": "REQUESTS",
            "module_description": "CONFIGURATION",
            "action": "LOGIN",
            "description": "Fracttal Demo"
            
        },
        {
            "id": 120593,
            "id_company": 133,
            "id_account": 2,
            "event_date": "2020-02-25T14:53:03.536224+00:00",
            "ip_address": "190.215.52.171",
            "name": "RICARDO ROMAN",
            "email": "[email protected]",
            "sub_module_description": "REQUESTS",
            "module_description": "CONFIGURATION",
            "action": "LOGIN",
            "description": "Fracttal Demo"
        },
        {
            "id": 120592,
            "id_company": 133,
            "id_account": 2059,
            "event_date": "2020-02-25T14:02:12.635901+00:00",
            "ip_address": "190.215.52.171",
            "name": "Eddymar Coronel ",
            "email": "[email protected]",
            "sub_module_description": "ENTRIES",
            "module_description": "CONFIGURATION",
            "action": "DELETE",
            "description": "Walter Krause"
        }               
    ],
    "total":10
}

CONECTION TEST

Language