curl --request POST \
--url https://video.bunnycdn.com/library/{libraryId}/videos/{videoId} \
--header 'AccessKey: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"collectionId": "<string>",
"chapters": [
{
"title": "<string>",
"start": 123,
"end": 123
}
],
"moments": [
{
"label": "<string>",
"timestamp": 123
}
],
"metaTags": [
{
"property": "<string>",
"value": "<string>"
}
]
}
'{
"success": true,
"message": "<string>",
"statusCode": 123
}curl --request POST \
--url https://video.bunnycdn.com/library/{libraryId}/videos/{videoId} \
--header 'AccessKey: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"collectionId": "<string>",
"chapters": [
{
"title": "<string>",
"start": 123,
"end": 123
}
],
"moments": [
{
"label": "<string>",
"timestamp": 123
}
],
"metaTags": [
{
"property": "<string>",
"value": "<string>"
}
]
}
'{
"success": true,
"message": "<string>",
"statusCode": 123
}AccessKey based authentication
The title of the video
The ID of the collection where the video belongs
The list of chapters available for the video
Show child attributes
The list of moments available for the video
Show child attributes
The meta tags added to the video
Show child attributes
Was this page helpful?