Get Supplemental Files
Retrieve the supplemental files of a video. This endpoint requires view access and returns a blank array if there are no supplemental files associated to the video.
GET
/api/v2/videos/{videoId}/supplemental-files
Path Parameters
| Name | Type | Description |
|---|---|---|
| videoId | string, required | ID of video to return supplemental files for |
Response Body
{
"supplementalFiles": [
{
"fileId": "string",
"filename": "string",
"title": "string",
"size": 0,
"downloadUrl": "string"
}
]
}
| Parameter | Type | Description |
|---|---|---|
| supplementalFiles | object, string | Each supplemental file associated with the video contains an object with the following data: |
| fileId | string | Id of the file returned |
| filename | string | The filename of the supplemental file including the extension type |
| size | string | The size of the supplemental file |
| title | string | File title |
| downloadUrl | string | External download Url that uses the file Id |
Unauthorized error
Returned if the video Id does not exist
Internal server error