Concepts
Tools
Tools are chains of transformations to perform specific functions.
Listing Tools
To list all tools available in your project, use the list_tools
method:
Python
Retrieving a Tool
To retrieve a specific tool, use the retrieve_tool
method with the tool_id
:
Python
Triggering a Tool
To trigger a tool with specific parameters, use the trigger_tool
method:
Python
Getting Tool Parameters as JSON
To get the parameters of a tool as a JSON string, use the _get_params_as_json_string
method:
Python
Getting Tool Steps as JSON
To get the steps of a tool as a JSON string, use the _get_steps_as_json_string
method:
Python
Deleting a Tool
To delete a tool, use the delete_tool
method with the tool_id
:
Python