Přejít k obsahu  Přejít k hlavnímu menu

Blog / Knowledge base

Updated: 5. August 2020

Webhook

Data transfer from Mailocator via Webhook to third parties

Supported data formats

Data formats: filed name=value&..., XML, JSON and data aggregated into a POST variable data



Supported HTTP methods

Most formats can be combined with HTTP methods GET, POST or PUT



Basic structure of transmitted data

At least the following fields (variables) are returned in each request:
engine - contains "Mailocator"
time - contains unix timestamp of sending the request
email - contains a valid email address

Optionally, additional data from the popup form sent by the action can be added subscribe



Examples

Request with POST method and JSON format
Return data, result of PHP function call var_export($_POST,1)


array (
'{"engine":"Mailocator","time":1596634651,"email":"test@mlctr_com"}' => '',
)







Request with POST method and XML format
Return data, result of PHP function call var_export($_POST,1)


array ('<?xml version="1.0"?>
<contact>
    <engine>Mailocator</engine>
    <time>1596634651</time>
    <email>test@mlctr.com</email>
</contact>'



Request with POST method and XML format
Return data, result of PHP function call file_get_contents('php://input')


<?xml version="1.0"?>
<contact>
<engine>Mailocator</engine>
<time>1596634651</time>
<email>test@mlctr.com</email>
</contact>










Expected return codes from a third-party server:


1 - contact saved successfully, Mailocator will display a thank you note
0 - contact was not saved successfully, Mailocator displays information about the duplicate contact

If the content is different or empty, the processing process is interrupted by Mailocator, an error is written in the monitoring.

PHP example


After successfully processing the request on the server, just call echo '1';, the return value is interpreted as a correctly stored contact.

RELATED

Switching between integrations within the same project

If you need to route some campaigns to the CRM, others to an email tool, and store the results from surveys in an independent database, this solution is also easy to set up.

Automated values, adding values to hidden inputs

Merging of arbitrary fields and automatic filling of selected fields with a series of system values

Launch a campaign when you hover or touch a specific location on the page

Mark a location that triggers a campaign when the user hovers over it or touches it on a touch device

Mailocator Events

With events, you can intelligently manage the sequence of campaigns across the entire workflow scenario and display much more relevant and precisely targeted content in real time.

Notification

Set up the display of notifications on your site using Mailocator