---
title: "Integrate VideoManager UI into your own application"
slug: "integrate-videomanager-ui-into-your-own-application"
updated: 2024-01-17T12:42:40Z
published: 2024-01-17T12:42:39Z
canonical: "help.movingimage.com/integrate-videomanager-ui-into-your-own-application"
---

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

# Integrate VideoManager UI into your own application

## Description

You can integrate the VideoManager UI into your own application without having to log into VideoManager separately. To do this, you need to get a valid UI integration token.

## Steps

1. Get a UI integration token

Use the [POST method](https://developers.movingimage.com/#/Group%20UI%20Integration/post_v1_vms_auth_uiintegration) `/v1/vms/auth/uiintegration` to retrieve a valid UI integration token. Include the following information in the body of your request:

```plaintext
{
    "username": "<YOUR_USERNAME>",
    "password": "<YOUR_PASSWORD>",
    "videoManagerId": 10
}
```

The response will be a JSON object containing the UI integration token.
  - `username`: Your VideoManager username
  - `password`: Your VideoManager password
  - `videoManagerId`: (optional) The ID of the VideoManager instance you want to integrate with
2. Open VideoManager without logging in

Use the following URL to open VideoManager without logging in, including the returned token:

```plainText
https://vmpro.movingimage.com/#/uiintegration?uiIntegrationToken={{urlEncodedToken}}
```

Ensure that the token is URL encoded.
