docs/interfaces/management.Management.ListActionsRequestParameters.html
{ * triggerId: "post-login", * actionName: "actionName", * deployed: true, * page: 1, * per_page: 1, * installed: true * }Copy
interface ListActionsRequestParameters {
triggerId?: Management.ActionTriggerTypeEnum | null;
actionName?: string | null;
deployed?: boolean | null;
page?: number | null;
per_page?: number | null;
installed?: boolean | null;
}
triggerId?actionName?deployed?page?per_page?installed?
OptionaltriggerIdtriggerId?: Management.ActionTriggerTypeEnum | null
An actions extensibility point.
OptionalactionNameactionName?: string | null
The name of the action to retrieve.
Optionaldeployeddeployed?: boolean | null
Optional filter to only retrieve actions that are deployed.
Optionalpagepage?: number | null
Use this field to request a specific page of the list results.
Optionalper_pageper_page?: number | null
The maximum number of results to be returned by the server in single response. 20 by default
Optionalinstalledinstalled?: boolean | null
Optional. When true, return only installed actions. When false, return only custom actions. Returns all actions by default.
Member Visibility
ThemeOSLightDark