> For the complete documentation index, see [llms.txt](https://help.novatalks.com.ua/en/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.novatalks.com.ua/en/get-started/settings/integrations/dashboard-apps.md).

# Dashboard apps

## Dashboard apps list

**Dashboard apps** - allows users to embed their other applications in the NovaTalks interface to provide agents with additional information about users, their orders, previous payment history, etc. Conversation context and contact/dialog details can be transferred to an application.

To add a new application/edit an existing one, select **Add a new dashboard app/Edit dashboard app.**

<figure><img src="/files/6iCKFKkJuIPrWXiroapP" alt=""><figcaption></figcaption></figure>

***

## **Create/Edit a Dashboard App**

<figure><img src="/files/vH4qil2e7MVuTMAqTgAh" alt=""><figcaption></figcaption></figure>

1. **Name** - a name of an application&#x20;
2. **Endpoint** - a URL where an application is located&#x20;
3. **Selected icon** - an icon that will be displayed on the [Dashboard Apps panel](/en/get-started/conversations/dashboard-apps.md)
4. **Add additional parameters** — allows you to specify parameter values to be passed through the **Key/Value** fields. The additional parameters are passed in the **Browser Event Payload** **`ntk-dashboard-app-on_loading`**.
5. **Auto launch** — if enabled, the application is automatically launched on the **Conversations** tab, while remaining collapsed.
6. **Pin to the panel** — if enabled, the application is pinned to the application panel on the **Conversations** tab and cannot be removed from the panel.
7. **Allow close** — if enabled, the application has a close function (**Close** button) available.

Dashboard apps can receive data from NovaTalks:&#x20;

* When an app is launched for the first time (event "ntk-dashboard-app-context");&#x20;
* When you run a Macro with the Send Browser Event action (For more information - [Macros](/en/get-started/settings/macros.md)).

**Event Payload**

```
{
  "event": "ntk-dashboard-app-on_loading",
  "data": {
    "additional_settings": [
    ],
      "sip":{
         "sip_username":"1060",
         "sip_password":"test",
         "sip_domain":"aws.ba.jambonz.demo.com.ua",
         "sip_server_address":"wss://novatalks-demo.com.ua/webrtc-ws",
         "isSipConfigured":true,
         "sip_display_name":"Nataliia.Bondarenko",
         "locale":"en",
         "login_station":"web_phone",
         "station":"1060"
      },
    "currentAgent": {
      "id": 7,
      "name": "Nataliia.Bondarenko",
      "email": "nataliia.bondarenko@test.com"
      "status": "online",
      "substatus": "interacting",
       "timezone": "Europe/Kiev",
       "locale": "en",
       "sip_username": "1060",
       "station": "1060"
    }
  }
}
```
