# ai_prompt_orgs_users_languages_update Update a specific prompt language. Args: request: The HTTP request containing the updated language data. org: The organization/tenant identifier. user_id: The ID of the user making the request. language_id: The ID of the language to update. Returns: Response: The updated prompt language. Raises: BadRequest: If the provided data is invalid. NotFound: If the specified language does not exist. Endpoint: PUT /api/ai-prompt/orgs/{org}/users/{user_id}/languages/{language_id}/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `language_id` (integer, required) - `org` (string, required) - `user_id` (string, required) ## Request fields (application/json): - `name` (string, required) - `code` (string,null) ## Response 200 fields (application/json): - `id` (integer, required) - `name` (string, required) - `code` (string,null)