> ## Documentation Index
> Fetch the complete documentation index at: https://docs.callers.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Key Questions

By adding Key Questions to your script steps, you create a handy reference for quick analysis and data retrieval. This section takes place under the campaign summary:

<Frame caption="Key questions will be listed in the Workflow window">
  <img src="https://mintcdn.com/voxiaai/PORufZ8sEFqmq_YO/images/documentation/using-callers/workflow-button.png?fit=max&auto=format&n=PORufZ8sEFqmq_YO&q=85&s=f1da553ad4533dc96a27a9b2860a1ab3" alt="key questions" style={{borderRadius: '10px'}} width="3740" height="1572" data-path="images/documentation/using-callers/workflow-button.png" />
</Frame>

### Summary and Post-Processing

In the **Workflow** window, you can configure:

* [**Webhooks**](/documentation/webhook/webhook-overview), which are triggered after a call is processed.
* **Interest Criteria**, which define the conditions under which a call is marked as **Interested**.
* **Key Questions**, which are used to capture important and relevant information from the conversation.

There are two types of Key Questions:

* **Step keys:** the analysis will be made related to a specific step or question.
* **Global keys:** the analysis will be made along the whole conversation.

<Frame>
  <img src="https://mintcdn.com/voxiaai/PORufZ8sEFqmq_YO/images/documentation/using-callers/post-call-analysis-tab.png?fit=max&auto=format&n=PORufZ8sEFqmq_YO&q=85&s=2231683513980ecb3f703b179458f2cb" alt="post-call analysis tab" style={{borderRadius: '10px'}} width="985" height="1118" data-path="images/documentation/using-callers/post-call-analysis-tab.png" />
</Frame>

### Adding Key Questions

#### Step Key Questions

* Navigate to the script where you want to add the Key Questions.
* Find the step number located on the left side of the step you want to summarize.
* Click on the step number. This action will open a window to set the Key for the step.

<Frame caption="Press the star icon left to the step to create your Key Question">
  <img src="https://mintcdn.com/voxiaai/2__iP2owtFnm9VIW/images/documentation/using-callers/star-icon-key-question.png?fit=max&auto=format&n=2__iP2owtFnm9VIW&q=85&s=97be94b6cb0620fc6c5c54af0d7fe7b8" alt="star icon left to the step" style={{borderRadius: '10px'}} width="3002" height="1562" data-path="images/documentation/using-callers/star-icon-key-question.png" />
</Frame>

<Frame>
  <img src="https://mintcdn.com/voxiaai/2__iP2owtFnm9VIW/images/documentation/using-callers/key-question-window.png?fit=max&auto=format&n=2__iP2owtFnm9VIW&q=85&s=9a17fdae72f563a9971c090bd4ae6b0a" alt="key question window" style={{borderRadius: '10px'}} width="3000" height="1572" data-path="images/documentation/using-callers/key-question-window.png" />
</Frame>

* Title, Description and Key Type will be automatically created for your Key Question according to the step description. This is data that can be changed.
* There are several types of question to select according to the desired output needed:
  * Open question
  * Single choice
  * Multiple choice
  * Yes/No
  * Number
  * Date
  * Time

You can add multiple titles to each step by repeating the above process, generating multiple outputs for the summary.

#### Global Key Questions

* In the Workflow window, scroll down to the Post-call Analysis section.
* Click on the "+ Add" button to create a new Key Question.
* Complete the required fields:
  * **Title:** Displayed in the summary.
  * **Description:** Instruction to the AI on what information to extract.
  * **Key Type:** Desired output response.

<Frame>
  <img src="https://mintcdn.com/voxiaai/PORufZ8sEFqmq_YO/images/documentation/using-callers/create-key-question.png?fit=max&auto=format&n=PORufZ8sEFqmq_YO&q=85&s=c2605737ee6c44deb808763e6d07e71c" alt="create a key question" style={{borderRadius: '10px'}} width="2367" height="1130" data-path="images/documentation/using-callers/create-key-question.png" />
</Frame>

> #### Removing Key Question Titles
>
> To delete a title, hover over the title and click on the remove icon that appears on the right side of it.

### Key Questions in Summaries

* Once added, these titles will be displayed in the 'Interested' contact summary section.

<Frame>
  <img src="https://mintcdn.com/voxiaai/PORufZ8sEFqmq_YO/images/documentation/using-callers/contact-summary.png?fit=max&auto=format&n=PORufZ8sEFqmq_YO&q=85&s=53dbc3efe70fa77e2529f66c75c08236" alt="contact summary" style={{borderRadius: '10px'}} width="3775" height="1749" data-path="images/documentation/using-callers/contact-summary.png" />
</Frame>

* For Webhooks, the summary will be structured as follows:

```json webhook.json theme={null}
"summary": {
    "Contact willingness": {
      "description": "Tell if the contact was willing to tell personal information",
      "options": [],
      "order": 3,
      "type": "YES_NO",
      "value": true
    },
    "Residency Inquiry": {
      "description": "Provide a yes or no response indicating whether you reside in the specified country.",
      "options": [],
      "order": 2,
      "type": "YES_NO",
      "value": true
    },
    "Schedule Call": {
      "description": "Extract the preferred day and time for the follow-up call.",
      "options": [],
      "order": 1,
      "type": "OPEN_QUESTION",
      "value": "today at five pm"
    }
  }
```
