The entire session’s recording is available as an embedded playback app that can be integrated into your application as an iframe as shown below. This will allow you to view the Proview session audio, video, event list, and the Proview index on your application itself once it is converted and processed. Below is the code snippet required to be injected for the playback embedding:
Generate PlaybackURL
- With Authentication Enabled
A playback token is required to view the embedded playback when the authentication is enabled on your account.
API to generate the token:Endpoint: https://api.proview.io/v1/playback-token
Method: POST
After generating the token the playback URL can be constructed as
https://app.proview.io/embedded/<<playbackID>>?token=<<playbackToken>> - With Authentication Disabled
The PlaybackURL can be constructed as
https://app.proview.io/embedded/ <<playbackID>>
PlaybackID is the embedded playback ID that Proview generates in its callback function.
If Authentication is Enabled it will also be available in the response of the playback token API with the name session_uuid.
The playback may take some time to be available in the embedded view. The post-processing takes roughly the same amount of time as the session, i.e. for a one-hour session, it will take roughly one hour for the playback to be available. The integrity score is available as part of the embedded view.
API Contract
Get Playback token
Description | Get token for Playback view | ||
Owner | Talview | ||
Method | POST | ||
URL | |||
Request Schema: | |||
Parameter | Type | Mandatory | Description |
proview_token | String | true | Proview Token |
session_uuid | String | true | UUID for which to generate playback token |
session_external_id | String | true | Session Id for which to generate the token |
profile_external_id | String | true | Profile Id for which to generate the token |
validity | Int | true | Validity of token (in minutes) |
Sample Request [ Either session_uuid or combination of session_external_id and profile_external_id, is mandatory to generate the token] | |||
Sample Response | |||