How to Hide the "Webhook Actions" Admin Menu

function plt_hide_flowsystems_webhook_actions_menus() {
	//Hide the "Webhook Actions" menu.
	remove_menu_page('fswa-webhook-actions');
}

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

Where do I put this code?