# Customizing Survey Behavior

### Showing a Welcome Screen

You can show your users a welcome screen before a survey rather than asking the first question immediately. By default, this is disabled. To enable the survey welcome screen, use the following method.

{% code title="JavaScript" %}

```javascript
Surveys.setShouldShowWelcomeScreen(true);
```

{% endcode %}

![](/files/74252f3f2b7e502dcb092fb85ab05d9a6a21600f)

### Integrating with Slack

If you have an existing Slack integration (or plan to create one), you can enable auto-forwarding of survey responses. If enabled, all NPS survey score responses and Custom survey responses will be forwarded to your Slack integration on the channel you choose.

* Forwarded NPS responses will display user email, responses, and score.
* Custom survey responses will display the user email and every question and its response.
* You'll also have the option to reply to the user, which will redirect you to the chat window to reply.

![](/files/fa25a6c8b8df1ada8f3cb300007fb774eecbcc2d) ![](/files/5b264c6330ce77e0b7a17b3b814ff1d5f183e883)

### Setting App Store URL

While the SDK will normally automatically link to your application on the app store when needed, if your application is limited to certain regions, the automatic linking might not work. In these cases, use the API below to manually set the URL of your application in the store.

{% code title="JavaScript" %}

```javascript
Surveys.setAppStoreURL('URL');
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.luciq.ai/react-native/setup-luciq-for-react-native/setup-in-app-surveys/customizing-survey-behavior.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
