# ai_mentor_orgs_users_custom_instruction_create Create a new custom instruction for a user. Args: request: The HTTP request containing the custom instruction data. org: The organization/tenant identifier. user_id: The ID of the user to create custom instructions for. Returns: Response: The created custom instruction. Raises: BadRequest: If the provided data is invalid. Endpoint: POST /api/ai-mentor/orgs/{org}/users/{user_id}/custom-instruction/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Request fields (application/json): - `about_user` (string,null) - `mentor_tone` (string,null) - `profession` (string) Position or work. eg: Engineer, student etc. - `desired_mentor_traits` (string) Comma separated list of expected traits for mentor. ## Response 201 fields (application/json): - `id` (integer, required) - `about_user` (string,null) - `mentor_tone` (string,null) - `profession` (string) Position or work. eg: Engineer, student etc. - `desired_mentor_traits` (string) Comma separated list of expected traits for mentor.