diff --git a/Documentation/Technical/API/Create.md b/Documentation/Technical/API/Create.md index 047bf0b7..62f70392 100644 --- a/Documentation/Technical/API/Create.md +++ b/Documentation/Technical/API/Create.md @@ -76,7 +76,7 @@ want to add the attribute "newsletter" with value 1 for a possible newsletter re "properties": { "visitor": { "attributes": { - "": { + "0": { "name": "newsletter", "value": "1" } @@ -94,7 +94,7 @@ want to add the attribute "newsletter" with value 1 for a possible newsletter re CURL example: ``` -curl -k -d 'tx_luxenterprise_api[arguments]={"endpoint":"create","merge":{"mergeByEmail":0,"mergeByFingerprint":1},"properties":{"visitor":{"attributes":{"":{"name":"newsletter","value":"1"}},"fingerprints":{"0":{"value":"abcdef123456789foobar"}}}}}' -H 'Api-Key: abc...' --url https://www.in2code.de/luxenterprise_api.json +curl -k -d 'tx_luxenterprise_api[arguments]={"endpoint":"create","merge":{"mergeByEmail":0,"mergeByFingerprint":1},"properties":{"visitor":{"attributes":{"0":{"name":"newsletter","value":"1"}},"fingerprints":{"0":{"value":"abcdef123456789foobar"}}}}}' -H 'Api-Key: abc...' --url https://www.in2code.de/luxenterprise_api.json ``` **Note:** If you want to get the fingerprint value of the current visitor via JavaScript, following example could help: diff --git a/Documentation/Technical/Changelog/Index.md b/Documentation/Technical/Changelog/Index.md index 85e39891..e343e76b 100644 --- a/Documentation/Technical/Changelog/Index.md +++ b/Documentation/Technical/Changelog/Index.md @@ -31,6 +31,7 @@ Double check if you have cleared all caches after installing a new LUX version t | Version | Date | State | TYPO3 | Description | |------------|------------|----------|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 35.3.0 | 2024-05-27 | Feature | `11.5 + 12.4` | Show also first page visit and referrer in CSV downloads of lead list | | 35.2.1 | 2024-05-16 | Bugfix | `11.5 + 12.4` | Fix lead search with space character in searchterm in lead list, small fix in API documentation | | 35.2.0 | 2024-04-27 | Feature | `11.5 + 12.4` | Extend frontend JS for another callback function for adding text anywhere in the DOM | | 35.1.0 | 2024-04-22 | Feature | `11.5 + 12.4` | Add possibility to use an existing event in own JS after an action was performed | diff --git a/Resources/Private/Templates/Lead/DownloadCsv.html b/Resources/Private/Templates/Lead/DownloadCsv.html index cef1b0b1..18433379 100644 --- a/Resources/Private/Templates/Lead/DownloadCsv.html +++ b/Resources/Private/Templates/Lead/DownloadCsv.html @@ -1,5 +1,5 @@ - Lead Ident;Lead Scoring;Email;Company;Last Visit;Number of Visits;Country;Last visit;Last download - {visitor.fullName};{visitor.scoring};{visitor.email};{visitor.company};{f:format.date(date:visitor.dateOfLastVisit,format:'{f:translate(key:\'LLL:EXT:lux/Resources/Private/Language/locallang_db.xlf:date\')}')};{visitor.visits};{visitor.country};{visitor.pagevisitLast.crdate -> f:format.date(format:'Y-m-d')};{visitor.lastDownload.crdate -> f:format.date(format:'Y-m-d')} + Lead Ident;Lead Scoring;Email;Company;Country;Source;Number of Visits;Last Visit;First visit;Last download + {visitor.fullName};{visitor.scoring};{visitor.email};{visitor.company};{visitor.country};{visitor.pagevisitFirst.referrer};{visitor.visits};{f:format.date(date:visitor.dateOfLastVisit,format:'{f:translate(key:\'LLL:EXT:lux/Resources/Private/Language/locallang_db.xlf:date\')}')};{visitor.pagevisitFirst.crdate -> f:format.date(format:'{f:translate(key:\'LLL:EXT:lux/Resources/Private/Language/locallang_db.xlf:date\')}')};{visitor.lastDownload.crdate -> f:format.date(format:'{f:translate(key:\'LLL:EXT:lux/Resources/Private/Language/locallang_db.xlf:date\')}')} diff --git a/ext_emconf.php b/ext_emconf.php index d19f879b..e8cd3355 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ 'description' => 'Living User Experience - LUX - the Marketing Automation tool for TYPO3. Turn your visitors to leads. Identification and profiling of your visitors within your TYPO3 website.', 'category' => 'plugin', - 'version' => '35.2.1', + 'version' => '35.3.0', 'author' => 'Alex Kellner', 'author_email' => 'alexander.kellner@in2code.de', 'author_company' => 'in2code.de',