curl --request GET \
--url https://sandbox.syngrafii.com/api/v1/packages/{packageId}/videos \
--header 'api_key: <api-key>'{
"packageId": "<string>",
"videos": [
{
"meetingVideoId": "<string>",
"meetingVideoSharedId": "<string>",
"meetingId": "<string>",
"meetingSessionId": "<string>",
"externalVideoId": "<string>",
"externalStorageId": "<string>",
"timeCreated": "<string>",
"timeRetention": "<string>",
"timeDeleted": "<string>",
"duration": "<string>",
"size": 123,
"source": "<string>",
"type": "<string>",
"state": "<string>",
"url": "<string>",
"timeUrlExpires": "<string>"
}
]
}/packages/{packageId}/videos endpoint.
The response will include one or more video URLs that can be used to download or playback the video.
video.timeUrlExpires (currently 24 hours)./packages/{packageId} endpoint will also include videos URLs under meetings[].sessions[].videos[].See the Packages get API for more information.GET /packages/{packageId}/videos
Show properties
Show values
| Value | Description |
|---|---|
| video | Standard video recording. |
Show values
| Value | Description |
|---|---|
| started | Video recording session is currently active. |
| stopped | Video recording session ended successfully. |
| queued | Video recording is waiting to download. |
| failed | Video recording failed to download because of an error. |
| archived | Video recording has been successfully downloaded and is available for playback. |
| deleted | Video recording has been permanently removed. |
timeUrlExpires.{
"packageId": "26dc68b2-e8be-4594-9a27-8fc6db91f6fc",
"videos": [
{
"meetingVideoId": "919a16f5-7ada-44ff-9dc4-37a20fe4e4c4",
"timeCreated": "2019-07-15T16:53:44.342Z",
"duration": "PT5M12S",
"size": 4402007,
"type": "video",
"state": "archived",
"url": "https://syngrafii.com/video/xxxx?access=yyyy",
"timeUrlExpires": "2019-08-22T19:05:54.8535047Z"
},
{
"meetingVideoId": "5dac6b3a-a61c-4094-bdab-0b073436c0a9",
"timeCreated": "2019-07-15T16:58:58.219Z",
"duration": "PT2M7S",
"size": 2505995,
"type": "video",
"state": "archived",
"url": "https://syngrafii.com/video/xxxx?access=yyyy",
"timeUrlExpires": "2019-08-22T19:05:54.8535047Z"
}
]
}
{
"packageId": "26dc68b2-e8be-4594-9a27-8fc6db91f6fc",
"name": "Signing",
"timeCreated": "2019-07-15T15:03:41Z",
"type": "video_closing_room",
"state": "open",
"meetings": [
{
"meetingId": "91dbac93-f7c3-4ff1-932c-684b439c6af4",
"timeStart": "2019-07-15T15:15:00Z",
"duration": "PT1H",
"participants": [...],
"sessions": [
{
"meetingSessionId": "f85a4fa1-b173-40d6-a047-53238d69f34a",
"timeStarted": "2019-07-15T16:53:28.316Z",
"timeEnded": "2019-07-15T17:56:42.983Z",
"state": "ended",
"participants": [...],
"videos": [
{
"meetingVideoId": "919a16f5-7ada-44ff-9dc4-37a20fe4e4c4",
"timeCreated": "2019-07-15T16:53:44.342Z",
"duration": "PT5M12S",
"size": 4402007,
"type": "video",
"state": "archived",
"url": "https://syngrafii.com/video/xxxx?access=yyyy",
"timeUrlExpires": "2019-08-22T19:05:54.8535047Z"
},
{
"meetingVideoId": "5dac6b3a-a61c-4094-bdab-0b073436c0a9",
"timeCreated": "2019-07-15T16:58:58.219Z",
"duration": "PT2M7S",
"size": 2505995,
"type": "video",
"state": "archived",
"url": "https://syngrafii.com/video/xxxx?access=yyyy",
"timeUrlExpires": "2019-08-22T19:05:54.8535047Z"
}
]
}
]
}
],
"documents": [...],
"signers": [...]
}
curl --request GET \
--url https://sandbox.syngrafii.com/api/v1/packages/{packageId}/videos \
--header 'api_key: <api-key>'{
"packageId": "<string>",
"videos": [
{
"meetingVideoId": "<string>",
"meetingVideoSharedId": "<string>",
"meetingId": "<string>",
"meetingSessionId": "<string>",
"externalVideoId": "<string>",
"externalStorageId": "<string>",
"timeCreated": "<string>",
"timeRetention": "<string>",
"timeDeleted": "<string>",
"duration": "<string>",
"size": 123,
"source": "<string>",
"type": "<string>",
"state": "<string>",
"url": "<string>",
"timeUrlExpires": "<string>"
}
]
}