.. index:: single: API Integration .. _api-integration: API Integration =============== :tirreno:`Tirreno` can be used by practically any digital system. The *only* requirement is to start sending :term:`user` activity information (:term:`events` data) to :tirreno:`Tirreno` for further processing. .. admonition:: Good news! This also means enabling integration with :tirreno:`Tirreno` hardly costs any :term:`client` platform resources. This is done by sending an HTTP POST request with :term:`event` details to the :tirreno:`Tirreno`’s API. In general, :term:`event` details consist of basic :term:`user` information for building their identity profiles (such as email address, IP address, phone number, etc.) and request data (such as time of event, URL requested, user agent, etc.). For an applied illustration of the fields and values to send, go to the :ref:`Event Data Example ` subsection. The complete list of the mandatory and optional fields accepted by the API is given below, in the :ref:`Integration Examples ` section. The section also gives practical examples of API integration scripts in different programming languages with a number of assisting instructions. A similar set of the ready-made examples can be found on the :ref:`API Key ` page of the account’s :ref:`Console `. These examples include an account-unique API key and :term:`sensor` URL, which are requisites for each API communication. Observe that the API key must be sent in the header of a request. To accomplish the integration, fill in the mandatory and selected optional fields in the integration script with the values obtainable in the :term:`client` platform. Then add the script to the pages visited by identifiable (i.e., logged-in) :term:`users`. To verify that the API communication is established, proceed to the account’s :ref:`Console `. The :term:`event` processing time is expected to fall in the range of a minute, resulting in close to real-time reporting. In case troubleshooting is needed, open the :ref:`Logbook` page which exposes processing statuses of the recent API requests. .. _integration-outline: Integration Outline ------------------- To summarize, the steps to perform for accomplishing an API integration are as follows: 1. Choose a code snippet matching the backend environment of a :term:`client` platform in the :ref:`Code Examples ` subsection. Or use one of them as a prototype. 2. In the code snippet, insert account-unique and platform obtainable values. 3. Add the prepared code to every :term:`client` platform page that must be monitored. 4. Verify established API communication at the :tirreno:`Tirreno` :term:`console`. .. attention:: If you need help with the API integration, `contact us for support `_. .. index:: single: Integration Examples .. _integration-examples: Integration Examples -------------------- The :term:`sensor` accepts six mandatory and nine optional parameters. Each parameter is expected to be a string. The parameters must be passed as URL-encoded POST request data. .. note:: It is highly recommended to pass as many parameters as possible. Sending more data results in more exhaustive reports and comprehensive analysis. The :term:`sensor` always responds with the code ``204``, even when receiving non-valid data. Therefore, this only enables monitoring the :term:`sensor`’s availability. To affirm requests processing statuses, refer to the :ref:`Logbook` page. .. index:: single: Required Parameters .. _required-parameters: Required Parameters ^^^^^^^^^^^^^^^^^^^ ``userName`` A :term:`user` identifier. It must be a unique value assigned to a :term:`user` by a :term:`client` platform. It serves to distinguish one :term:`user` from another and is employed by :tirreno:`Tirreno` to recognize individual users. ``emailAddress`` An email address associated with a :term:`user`. ``ipAddress`` An IP address associated with an :term:`event`. It can be retrieved from HTTP request headers. ``url`` A URL path of a :term:`resource` requested on a :term:`client` platform. ``userAgent`` A user agent string value. It can be retrieved from the HTTP request’s User-Agent header. ``eventTime`` A timestamp of an :term:`event`. It must be passed in the format ``Y-m-d H:i:s`` (for example, “|today|”). .. attention:: The maximum length of all request parameters is 100 characters, except the following: 2047 characters for `url` and `httpReferer`, 511 characters for `userAgent`, 255 for `pageTitle` and `browserLanguage` and 19 characters for `phoneNumber`. .. index:: single: Optional Parameters .. _optional-parameters: Optional Parameters ^^^^^^^^^^^^^^^^^^^^^^^ ``firstName`` A :term:`user`’s first name. ``lastName`` A :term:`user`’s last name. ``fullName`` A :term:`user`’s whole name. ``pageTitle`` A title of a visited :term:`resource`. ``phoneNumber`` A :term:`user`’s phone number. ``httpReferer`` A value of the Referer HTTP header field. ``httpCode`` An HTTP response status code the request ended with. ``browserLanguage`` A detected language of the browser. ``eventType`` One of the event types listed below. .. index:: single: Event Type .. _event-type: Event Type """""""""" Even though the parameter ``eventType`` is optional, consider sending it with the rest of the data. It has proven to be very effective for :term:`user` behaviour analytics. The value must be one of the following: * ``page_view`` * ``page_edit`` * ``page_delete`` * ``account_login`` * ``account_logout`` * ``account_login_fail`` * ``account_registration`` * ``account_email_change`` * ``account_password_change`` * ``account_edit`` * ``page_search`` .. index:: single: Event Structure Example .. _event-data-example: Event Data Example ^^^^^^^^^^^^^^^^^^^^^^^ This subsection demonstrates how to build an associative array with event details. The code snippet is written in Python programming language. The full code examples of API requests for sending event data in different programmer languages (including Python) are presented in the :ref:`Code Examples ` subsection. .. literalinclude:: /examples/event-data.py :language: python :linenos: .. index:: single: Code Examples single: PHP Example single: Python Example single: Node.js Example single: Ruby Example .. _code-examples: Code Examples ^^^^^^^^^^^^^ In the following code snippets, replace ```` and ```` with the corresponding account-unique values. They can be obtained on the :ref:`API Key ` page of the :term:`console`. .. tabs:: .. tab:: PHP .. literalinclude:: /examples/post-event.php :language: php :linenos: :caption: send-event.php .. tab:: Python .. literalinclude:: /examples/post-event.py :language: python :linenos: :caption: send-event.py .. tab:: Node.js This code snippet is intended to work starting Node.js version 10.0. Earlier versions require another approach. .. literalinclude:: /examples/post-event-node.js :language: javascript :linenos: :caption: send-event-node.js .. tab:: Ruby .. literalinclude:: /examples/post-event.rb :language: ruby :linenos: :caption: send-event.rb