Event

View the Events of your Models from the Event Sourcing feature.

Table name: events

Description: Storing events information of your models.

Model

use SaasReady\Models\Events;

Response Entity

type Event = {
    uuid: string;
    name: string;
    category: string;
    properties: array;
    activated_at: string;
    created_at: string;
    updated_at: string;
    
    model: Model;
    user?: User | null;
}

Endpoints

[GET] saas/events

Get a list of Events of a Model

Request payload:

Response payload:

[GET] saas/events/{eventUuid}

Get single Event

Request payload:

Response payload:

Last updated