cURL
curl --request PATCH \ --url https://api.vidbeo.com/v2/videos/{VIDEO_ID}/chapters/{CHAPTER_ID} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "<string>", "start": "<string>" }'
{ "success": true, "result": { "id": "abcde12345abcde12345a", "name": "Example", "start": "00:00:05" }, "links": {}, "errors": [] }
Update a chapter’s details
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the video
"abcde12345abcde12345a"
ID of the chapter
Chapter
The response is of type object.
object