# Get member specific User Journey This endpoint retrieves a list of user journey specifically associated with a member identified by their email Id. A journey represents a series of events, milestones, or actions that a member has completed within a given system or platform, often tied to rewards, activities, or engagement processes. This API allows businesses and developers to track member progress, measure engagement, and offer personalized incentives based on the user's journey Endpoint: GET /user/{{email_id}}/journeys Version: 3.0.0 Security: ## Path parameters: - `email_id` (string, required) Enter the email ID of the user whose journeys are to be retrieved. ## Response 200 fields (application/json): - `journeys` (array) Displays an array of journeys associated with the member. - `journeys.id` (string) Displays the unique identifier for the user journey. Example: "8483cb5c-82a4-486d-898c-4ed27c6bcf1b" - `journeys.name` (string) Displays the name of the journey, providing context or identifying the purpose of the journey. Example: "User Journey 1" - `journeys.description` (string) Displays a concise explanation of the journey's objective or related actions. Example: "User Journey 1 - purpose and activities" - `journeys.open_ended` (string) Displays whether the journey is open-ended, meaning it has no set expiration. Example: "true" - `journeys.started_at` (string) Displays the date and time when the journey started. Example: "2025-01-15T10:33:32.500861" - `journeys.expired_at` (string) Displays the date and time when the journey expired, if applicable. Example: "2025-01-15T10:33:32.500861" - `journeys.status` (string) Displays the current state of the journey, such as InProgress or Completed. Example: "InProgress" - `journeys.progress_percentage` (string) Displays the completion status of the journey as a percentage. Example: "0.0" - `journeys.created_at` (string) Displays the timestamp when the journey was created. Example: "2025-01-15T10:33:32.500861" - `journeys.journey_node_groups` (array) Displays grouped nodes in the journey for organizational purposes. - `journeys.journey_node_groups.id` (string) Displays the unique identifier of the node group. - `journeys.journey_node_groups.name` (string) Displays the name of the group. - `journeys.journey_node_groups.journey_nodes` (array) Displays individual nodes (actions/events) within a journey. - `journeys.journey_node_groups.journey_nodes.id` (string) Displays the unique identifier of the node. Example: "c46f12f8-b5cd-46fc-9856-a161240e5e49" - `journeys.journey_node_groups.journey_nodes.journey_group_id` (string) Displays the identifier for the group this node belongs to. Example: "None" - `journeys.journey_node_groups.journey_nodes.title` (string) Displays the name of the node, representing a specific action or event. Example: "Action 1" - `journeys.journey_node_groups.journey_nodes.category` (string) Displays the type of event the node represents (e.g., UserEvent, SystemEvent). Example: "UserEvent" - `journeys.journey_node_groups.journey_nodes.type` (string) Displays the action type, such as LoyaltyAction, Rewards, or Badges. Example: "LoyaltyAction" - `journeys.journey_node_groups.journey_nodes.data` (object) Displays additional data associated with the node, such as action ID or reward ID. - `journeys.journey_node_groups.journey_nodes.data.action` (string) Displays the unique identifier of the action ID. Example: "149" - `journeys.journey_node_groups.journey_nodes.condition` (string) Displays conditions or rules associated with this node. - `journeys.journey_node_groups.journey_nodes.status` (string) Displays the current status of the node, such as Pending or Completed. Example: "Completed" - `journeys.journey_node_groups.journey_nodes.completed_at` (string,null) Displays the timestamp when the node was completed. - `metadata` (object) Displays pagination details for the list of user journeys. - `metadata.total_pages` (integer) Displays the total number of pages available for all journeys. Example: 3 - `metadata.current_page` (integer) Displays the current page number in the pagination. Example: 1 - `metadata.per_page` (integer) Displays the number of journeys displayed per page. Example: 10