# ai_prompt_orgs_users_languages_create Create a new prompt language. Args: request: The HTTP request containing the language data. org: The organization/tenant identifier. user_id: The ID of the user creating the language. Returns: Response: The created prompt language. Raises: BadRequest: If the provided data is invalid. Endpoint: POST /api/ai-prompt/orgs/{org}/users/{user_id}/languages/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Request fields (application/json): - `name` (string, required) - `code` (string,null) ## Response 201 fields (application/json): - `id` (integer, required) - `name` (string, required) - `code` (string,null)