# Boton iKow

{% hint style="info" %}
**Good to know:** El boton iKow permite a las empresa, agregar un boton dentro de su pagina web. Esta opcion da a tus usuarios la ventaja de poder realizar videollamda o chat directo con tus asesores&#x20;
{% endhint %}

![Boton iKow](/files/6UlvNBVPrGrf7td3YNCL)

### Code

Es necesario que tanto el iframe como el script sea agregado a tu proyecto. el **Api Key** ya estara integrado en tu codigo. Solo debes copiar y pegar desde tu dashboard.

```html
<iframe id="iframe" src="https://button.ikowapp.com/?apiKey=Tu-Api-Key"
  frameBorder="0"
  scrolling="no"
  width="100%"
  allow="camera; microphone"
  style="position:fixed;bottom:0px;right:0px;z-index:40;" 
  >
</iframe>
```

```html
<script>
  setTimeout(function(){ 
      window.addEventListener("message", function() {
      var isOpenContainer = event.data["isOpenContainer"];
      document.getElementById("iframe").height = isOpenContainer ? "200" : "100%";
      console.log(!isOpenContainer);
    }, false);
  }, 3000);
	
</script>
```

### Como se veria en tu WEB

cuando implementas en tu web, aparecera en la aprte inferior derecha la burbuja de ikow. el cual solo mostrara a tus asesores y tus sedes.

![Boton ikow](/files/cG45oN1hw2UIZHGIf3d6)


---

# 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://doc.ikowapp.com/integracion/boton-ikow.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.
