get_user_journey
Track and analyze user interactions across multiple sessions by providing a User ID and date range. Optionally include detailed events for comprehensive behavioral insights.
Instructions
Get the complete journey of a user across multiple sessions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | No | End date in ISO format | |
includeEvents | No | Include detailed events (default false) | |
startDate | No | Start date in ISO format | |
userId | Yes | User ID or anonymous ID |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date in ISO format",
"type": "string"
},
"includeEvents": {
"description": "Include detailed events (default false)",
"type": "boolean"
},
"startDate": {
"description": "Start date in ISO format",
"type": "string"
},
"userId": {
"description": "User ID or anonymous ID",
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}