> For the complete documentation index, see [llms.txt](https://help.inteliwise.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.inteliwise.com/quick-guide-to-creating-voicebots.-1/how-to-create-a-voicebot/how-to-confirm-the-name-of-the-customer.md).

# How to confirm the name of the customer?

### When calling someone, there is no assurance that the phone will be answered by the owner.&#x20;

It is good to confirm who is on the other end. So, let us choose the [Confirm ](/what-can-you-do-with-inteliwise-blocks/confirm-how-to-get-confirmation-from-a-customer.md)block to ensure the voicebot is talking to the right person.

Please connect[ Custom JS](/what-can-you-do-with-inteliwise-blocks/custom-js-where-to-insert-a-custom-code.md) block’s **port out1** with [Confirm ](/what-can-you-do-with-inteliwise-blocks/confirm-how-to-get-confirmation-from-a-customer.md)block in port by a [connector](/quick-guide-to-creating-voicebots.-1/how-to-create-a-voicebot/how-to-add-blocks-and-connectors-and-how-to-remove-them.md).

The Options Panel of the **Confirm** block has many options to fill in. For example, we can choose whether we expect the client only to answer “*Yes” & “No”*, or whether there is an option to answer, “*I do not know*”.

We can also provide alternatives for mentioned answers. Obviously in real life, the confirmation may be expressed in many ways: “*Yes*”, “*Sure*”, “*Of course*.”  For humans, it will mean the same, but for a voicebot, they are 3 different responses.

![CONFIRMING THE IDENTITY – BRANCHING THE CONVERSATION](/files/-M_yzFi5wF0zufDmREwz)

Let us assume in our case, that the answer will be only “*Yes*” or “*No*”.

### So be nice, and when testing the behavior of your voicebot in this part of the conversation, answer only “*Yes*” or “*No*”.

So, with the above assumptions, it looks like we need to configure only one option: **Speech Synthesizer.**&#x20;

As you see in the image above, I wrote:  “Am I talking to`${globals.first_name}`?” This means I want the voicebot to say the name that is stored in a [global variable](/quick-guide-to-creating-voicebots.-1/how-to-create-a-voicebot/what-are-variables.md) – `globals.first_name`

I expect to hear: “*Am I talking to Anna Gregorczyk?*”

### You should expect that you will hear the name you set in the previous **Custom JS** block.

Save your project using the button [**SAVE** ![](https://lh5.googleusercontent.com/kJ2v2Do3j-pjWCJ9UQori0ys85Xp09Pt6MLHBdU_MeTXQaYTexJnusWxMeosGiNFjJr6hjb5Ph_60mklAn2KUCONKrKRKvSfNIXSgQy4KqZgGR0aPlGBmnnop1tTKW0umnH5YujP)and click the **Test your Voicebot** button.](/quick-guide-to-creating-voicebots.-1/take-an-advantage-of-the-inteliwise-voicebot-builder/how-to-benefit-from-buttons.md) ![](https://lh4.googleusercontent.com/PI48Bb9notpiQpjF9KHbRMKcTGHX85N-fm4RV62Rj8Y1kx-8NnNgOoGotiqRv7UH3zTO5bN67cToBNAzBpX2mZPT1BRl1epeksbce4cFJcyjuJQFXwIbh3YTeLD12VKEZVE3LwkW)

Have you heard your name? Have you responded? But the voicebot disconnected. Why?&#x20;

{% hint style="warning" %}
Well, we are missing a further part of the **Conversational Flow Scenario**. ![](https://lh3.googleusercontent.com/_1lXygZAFei-22PN14tYup_DnExgMjl4lZvygtoMSGd23T3uZV77uPIeQq5XssD2fJh8JL5HYUzZLJuG0QWzTxZz2wDXRlykIjiGMRL_q79VfwzFwkGvhKrkgSFKfAnugY94F3r8)
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://help.inteliwise.com/quick-guide-to-creating-voicebots.-1/how-to-create-a-voicebot/how-to-confirm-the-name-of-the-customer.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
