You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You will need your SOAP user id and SOAP encryption key as well as the hostname for your Marketo API endpoint. These can be found in the Admin -> SOAP section when logged into [app.marketo.com](http://app.marketo.com/).
17
39
18
40
If you store configuration in the environment you would create a new instance like:
19
41
20
42
```php
21
43
<?php
22
-
require('marketo.php');
44
+
require __DIR__ . '/vendor/autoload.php';
23
45
$marketo_client = new Marketo($_ENV['MARKETO_USER_ID'], $_ENV['MARKETO_ENCRYPTION_KEY'], $_ENV['MARKETO_SOAP_HOST']);
0 commit comments