# ai_prompt_orgs_users_prompt_create Create a new prompt. Args: request: HTTP request containing prompt data. Returns: Response with created prompt details. Raises: ValidationError: If the input data is invalid. Endpoint: POST /api/ai-prompt/orgs/{org}/users/{user_id}/prompt/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Query parameters: - `category` (integer) Category of the prompt - `created_by` (string) Option to filter by username of the prompt creators. - `filter_by` (string) Filter options include, date, prompt, default is date - `mentor_unique_id` (string) Mentor unique id of the prompt - `tag` (integer) Tag of the prompt - `visibility` (string) Visibility trype the mentor of the prompt ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Request fields (application/json): - `mentor` (string) - `tone` (string,null) - `style` (string) - `language` (string) - `tags` (array) - `is_system` (boolean) - `metadata` (any) - `category` (string) - `prompt` (string, required) - `title` (string,null) - `description` (string,null) - `prompt_visibility` (any,null) - `created_by` (string,null) - `platform` (integer, required) ## Response 201 fields (application/json): - `id` (integer, required) - `mentor` (string) - `tone` (string,null) - `style` (string) - `language` (string) - `tags` (array) - `is_system` (boolean) - `metadata` (any) - `category` (string) - `prompt` (string, required) - `title` (string,null) - `description` (string,null) - `prompt_visibility` (any,null) - `created_at` (string, required) - `updated_at` (string, required) - `created_by` (string,null) - `platform` (integer, required)