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
Name | Description | Type | Default |
---|---|---|---|
connection_name (required) | Name of the connection previously configured in Abstra Console. | str | None |
action_name (required) | Specific action to execute on the connector. | str | None |
params | Parameters required for the action | dict |
Returns
Return type and structure vary based on the specific connector and action executed.