Data Retrieval + User Model Management
Retrieving Conversation History
You can list and filter conversations for a user with various parameters:
Available Filters
user_id
: Retrieve conversations for a specific userservice_id
: Filter by service typelimit
andoffset
: Control paginationcreated_at_gt
/created_at_lt
: Filter by creation date rangeis_finished
: Filter by conversation state (true/false)
For detailed filter options, refer to the Get Conversations API Reference.
Retrieving Conversation Messages
To fetch the messages from a specific conversation:
For message filtering options and details, see the Get Conversation Messages API Reference.
User Model Management
The Amigo platform maintains user models that evolve based on interactions. These models enable personalized experiences across sessions.
Updating User Context Information
To add or update contextual information for a user:
This endpoint allows you to provide:
New client information
Contextual data relevant to the user
Information that should influence future interactions
The provided information will be incorporated into the user's snapshot model, affecting subsequent conversations.
Retrieving User Models
To get the latest user model for a specific user:
This endpoint returns the current user model containing:
User properties and preferences
Interaction history summaries
System-generated insights about the user
Any additional context previously provided
Best Practices for Data Management
Regular Synchronization: Periodically retrieve and sync user models with your systems
Contextual Updates: Update user context when you have new, relevant information
Privacy Compliance: Ensure all data operations comply with privacy requirements
Intelligent Filtering: Use available filters to retrieve precisely the data you need
Efficient Caching: Cache appropriate conversation and user data to reduce API calls
Last updated
Was this helpful?