Custom API Connector

I’m trying to create a new custom API connector for SuiteCRM 7.3, but I don’t quite understand how the connector and the Logic hooks work together.

When I’m triggering a method in an API class via a logic hook, how can I retrieve my connector’s config settings?

I figured this part out. In the API class, the one that extends ExternalAPIBase, do the following:

$this->connector = SourceFactory::getSource("your_connector_name");
$config = $this->connector->getProperties();

Now I need to try and figure out the rest. :S