Retrieve all messages from a session conversation.
Get the complete conversation history for a session with pagination support. Messages are returned in chronological order.
Path Parameters:
custom_user_id (str): Unique identifier for the usersession_id (UUID): Session UUID to get messages fromQuery Parameters:
offset (int): Number of messages to skip for pagination. Default: 0limit (int): Maximum messages to return. Range: 1-500. Default: 50Returns:
messages (List[Message]): List of message objects with role, content, and timestamptotal (int): Total number of messages in the sessionhas_more (bool): Whether more messages are available beyond the current pagex >= 01 <= x <= 500