Hi
Im trying to capture leads from my website to the crm.. I followed the code give but it gives me an error
Fatal error: Uncaught Exception: EspoClient: Unknown Error
by code is as below
require_once('includes/EspoApiClient.php');
$client = new EspoApiClient('https://www.mywebsite.com/crm/');
$apiKey = '78d5b5771e0e2eedae78a393aebfb193'; // specify your API key here
$formData = [
'firstName' => $_POST['name'],
'phoneNumber' => $_POST['mobileno'],
'emailAddress' => $_POST['email']
];
$client->request('POST', 'LeadCapture/' . $apiKey, $formData);
can someone tell me what might be the problem?
Im trying to capture leads from my website to the crm.. I followed the code give but it gives me an error
Fatal error: Uncaught Exception: EspoClient: Unknown Error
by code is as below
require_once('includes/EspoApiClient.php');
$client = new EspoApiClient('https://www.mywebsite.com/crm/');
$apiKey = '78d5b5771e0e2eedae78a393aebfb193'; // specify your API key here
$formData = [
'firstName' => $_POST['name'],
'phoneNumber' => $_POST['mobileno'],
'emailAddress' => $_POST['email']
];
$client->request('POST', 'LeadCapture/' . $apiKey, $formData);
can someone tell me what might be the problem?
Comment