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
Get a UI integration token
Use the POST method
/v1/vms/auth/uiintegrationto retrieve a valid UI integration token. Include the following information in the body of your request:{ "username": "<YOUR_USERNAME>", "password": "<YOUR_PASSWORD>", "videoManagerId": 10 }username: Your VideoManager usernamepassword: Your VideoManager passwordvideoManagerId: (optional) The ID of the VideoManager instance you want to integrate with
The response will be a JSON object containing the UI integration token.
Open VideoManager without logging in
Use the following URL to open VideoManager without logging in, including the returned token:
https://vmpro.movingimage.com/#/uiintegration?uiIntegrationToken={{urlEncodedToken}}Ensure that the token is URL encoded.