Skip to main content

run_connection_action

Executes an action on a configured connector integration. This function enables interaction with external services and APIs through pre-configured connectors in the Abstra platform.

Connection Setup

Connections must be configured in Abstra Console before use. Each connector requires specific authentication credentials and configuration parameters.

Syntax

from abstra.connectors import run_connection_action

result = run_connection_action(connection_name, action_name, params)

Parameters

NameDescriptionTypeDefault
connection_name (required)Name of the connection previously configured in Abstra Console.strNone
action_name (required)Specific action to execute on the connector.strNone
paramsParameters required for the actiondict
Returns

Return type and structure vary based on the specific connector and action executed.