# ai_prompt_orgs_users_all_chats_memory_create Create a new chat memory entry for a user. Args: request: The HTTP request containing the chat memory data. org: The organization/tenant identifier. user_id: The ID of the user to create chat memory for. Returns: Response: The created chat memory entry. Raises: BadRequest: If the provided data is invalid. Endpoint: POST /api/ai-prompt/orgs/{org}/users/{user_id}/all-chats-memory/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Request fields (application/json): - `username` (string, required) - `platform_key` (string, required) - `content` (string,null) - `session_id` (string,null) ## Response 201 fields (application/json): - `id` (integer, required) - `username` (string, required) - `platform_key` (string, required) - `content` (string,null) - `session_id` (string,null)