@halix/action-sdk
    Preparing search index...

    Interface IncomingEventBody

    IncomingEventBody is an interface defining the properties of an incoming event body. The halix platform provides these properties when an action is triggered.

    interface IncomingEventBody {
        actionSubject: any;
        authToken?: string;
        authTokenRetriever?: () => Observable<string>;
        params: Record<string, any>;
        sandboxKey: string;
        serviceAddress: string;
        userContext: UserContext;
    }
    Index

    Properties

    actionSubject: any
    authToken?: string
    authTokenRetriever?: () => Observable<string>
    params: Record<string, any>
    sandboxKey: string
    serviceAddress: string
    userContext: UserContext