6. Openning a proctored session in the video archive
There is an ability for transparent authorization of proctors with simultaneous opening of the video archive. The archive can be opened in an iframe to be embedded into the LMS interface.
Link to open the archive:
https://[proctor_url]/integration/simple/[integration_name]/archive/[session_id]/A parameter token must be passed as either GET or POST parameter. The value of that parameter is a JWT. The JWT payload must contain a session ID and information about the user who is going to review the session.
JWT payload example:
json
{
"userId": "1232134",
"lastName": "Smith",
"firstName": "John",
"thirdName": "",
"language": "en",
"sessionId": "b3875623"
}The method fields are described in the table below:
| Parameter group | Field | Type | Maximum length | Description |
|---|---|---|---|---|
| User parameters | userId* | string | 255 | User identifier in LMS (can be an employee number or GUID) or a user’s email address. An email address is preferred, in this case it must be unique for every user. |
| lastName | string | 255 | User's last name. | |
| firstName | string | 255 | User's first name. | |
| thirdName | string | 255 | User's middle name. | |
| language | string (enum) | 2 | 2-character code from ISO 639-1. | |
| Interface parameters | returnUrl | string | 255 | URL of the page where the user can go back with the Back button. |
| Session parameters | sessionId* | string | 230 | Session ID in LMS. |