Docly

Client connections

Estimated reading: 1 minute

As a developer you have the disposal to use the authorized connections in your own theme. There are a number of predefined functions that you can use per connection. Always start each connection in the following way first:

				
					//Salesforce connection
$salesforce = instance('Client_Salesforce');

//Mautic connection
$mautic = instance('Client_Mautic');

//Pardot connection
$pardot = instance('Client_Pardot');

//Dynamics connection
$dynamics = instance('Client_Dynamics');
				
			

View the articles below to see the available function per connection.