docs/classes/management.SDK.BindingsClient.html
new BindingsClient(options: BaseClientOptions): BindingsClient
list(
triggerId: Management.ActionTriggerTypeEnum,
request?: ListActionTriggerBindingsRequestParameters,
requestOptions?: BindingsClient.RequestOptions,
): Promise<Page<ActionBinding, ListActionBindingsPaginatedResponseContent>>
Retrieve the actions that are bound to a trigger. Once an action is created and deployed, it must be attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The list of actions returned reflects the order in which they will be executed during the appropriate flow.
An actions extensibility point.
OptionalrequestOptions: BindingsClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.actions.triggers.bindings.list("post-login", { page: 1, per_page: 1 })Copy
updateMany(
triggerId: Management.ActionTriggerTypeEnum,
request?: UpdateActionBindingsRequestContent,
requestOptions?: BindingsClient.RequestOptions,
): HttpResponsePromise<UpdateActionBindingsResponseContent>
Update the actions that are bound (i.e. attached) to a trigger. Once an action is created and deployed, it must be attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The order in which the actions are provided will determine the order in which they are executed.
An actions extensibility point.
OptionalrequestOptions: BindingsClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.actions.triggers.bindings.updateMany("post-login")Copy
Protected Readonly_options_options: NormalizedClientOptionsWithAuth<BaseClientOptions>
Member Visibility
ThemeOSLightDark
Constructors constructor Methods listupdateMany Properties _options