Data Submission Request
The Data Submission Request enables you to send tracking events directly to JENTIS via HTTP. It is the primary interface for transmitting event-based data from external systems into the JENTIS processing pipeline.
This endpoint should be used whenever a measurable tracking event occurs outside the standard JENTIS Base Code environment. Typical examples include backend purchase confirmations, cancelled orders, CRM-triggered events, POS transactions, or server-side interactions.
Once submitted, the event is processed by JENTIS and forwarded to the configured connectors according to your setup.
In short:
Use this interface to send tracking data
Events are processed through the JENTIS pipeline
Configured connectors can be triggered
Designed for server-side and external system integrations
To use the JENTIS HTTP API, you must obtain a dedicated API Key.
⚠️ Important You must create a Helpdesk ticket in JENTIS to request access and receive your API key for this endpoint.
Without a valid API key, requests will be rejected.
API - Definition
Data submitted successfully
No content
POST / HTTP/1.1
Host: hash.customer.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 905
{
"version": 3,
"system": {
"type": "http-api",
"timestamp": 1655704922774,
"navigator-userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36",
"initiator": "jts_push_submit",
"href": "https://stage-test.jtm-demo.com/?",
"requestType": "sendBeacon",
"domain": ".jtm-demo.com"
},
"consent": {
"<vendorId>": {
"status": "ncm",
"execute": true
}
},
"configuration": {
"container": "ckion-demo",
"environment": "live",
"version": "3",
"debugcode": "a675b5f1-48d2-43bf-b314-ba4830cda52d",
"jtsAutomationId": "12345abcd6789",
"withoutConsentData": false
},
"data": {
"identifier": {
"user": {
"id": 7.173716454587715e+22,
"action": "new"
},
"session": {
"id": 7.173716454587715e+22,
"action": "new"
}
},
"variables": {
"document_location_href": "https://ckion-dev.jtm-demo.com/?",
"fb_browser_id": "fb.1.1711009849625.5246926883",
"jtspushedcommands": [
"pageview",
"submit"
],
"product_id": [
"1111",
"2222222"
]
}
}
}Data submitted successfully
No content
Last updated
Was this helpful?