contact360 / php-api
Contact360 API connection layer
1.3.1
2024-05-15 19:13 UTC
Requires
- php: >=5.3.0
- ext-curl: *
- ext-json: *
README
Entry classes for Contact360 API communication.
Table of contents
Installation/Requirements
Requirements
- Installed JavaScript snippet in
- "Client ID" and "API secret" from panel.stelsoft.pl > "Konfiguracja" > "Integracje" tab
- Dependencies:
- php >= 5.3
- ext-json >= 1.2
- ext-curl
Installation with Composer
- Require composer package:
composer require contact360/php-api
- Include reference in your code:
use Contact360\API; require 'vendor\autoload.php';
Manual Installation
- Download this repository as ZIP
- Unpack and include in your code
Features
- insert web form contact event
- insert web cart event
Usage/Examples
Usage
use Contact360\API;
$client_id = 'YOUR-CLIENT-ID';
$secret = 'YOUR-API-SECRET';
$APIClient = new API($client_id, $secret);
$form_name = 'Contact Page Form';
$enquiry_content = 'Equiry from your website:<br/>First Name: John\nLast Name: Doe';
$fields = [
'email' => 'example@example.org',
'phone' => '123087923',
'name' => 'John Doe',
//'firstname' => 'John', //alternative for single "name" field
//'lastname' => 'Doe', //alternative for single "name" field
];
$result = $APIClient->insertContactForm($form_name, $enquiry_content, $fields);
if($result){
echo 'Contact form event registered.';
}
else{
echo 'Could not communicate to API right now.';
}
Examples
- Debugging:
$APIClient = new API($client_id, $secret, true); $result = $APIClient->insertContactForm($form_name, $enquiry_content, $fields); if(!$result){ var_dump($result->getCallResults()); }