# ai_prompt_orgs_users_prompts_category_create Create a new prompt category. Args: request: The HTTP request containing category information. org: Organization key identifier. user_id: User performing the request. Returns: - 201: Created prompt category. - 401: If the user is not a tenant admin. - 400: If request data is invalid. Endpoint: POST /api/ai-prompt/orgs/{org}/users/{user_id}/prompts/category/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Request fields (application/json): - `name` (string, required) - `description` (string,null) ## Response 201 fields (application/json): - `id` (integer, required) - `name` (string, required) - `description` (string,null) - `created_at` (string,null, required) - `updated_at` (string,null, required)