How to Hide the "miniOrange API Authentication" Admin Menu

function plt_hide_wp_rest_api_authentication_menus() {
	//Hide the "miniOrange API Authentication" menu.
	remove_menu_page('mo_api_authentication_settings');
}

add_action('admin_menu', 'plt_hide_wp_rest_api_authentication_menus', 11);

Where do I put this code?