Enable or Disable Surveys
API reference for enabling or disabling Luciq surveys entirely. Stops every survey from showing, including manually targeted ones.
If you would like to disable the surveys from showing in general, including manual targeting surveys, you can do so using this API.
Disabling Surveys
This API completely disables surveys, meaning surveys will not be shown regardless of the code called.
Surveys.enabled = false;[LCQSurveys setEnabled:NO];// Enable
Surveys.setState(Feature.State.ENABLED);
// Disable
Surveys.setState(Feature.State.DISABLED);// Enable
Surveys.setState(Feature.State.ENABLED)
// Disable
Surveys.setState(Feature.State.DISABLED)Surveys.setEnabled(false);Surveys.setEnabled(false);Last updated