curl --request POST \
--url https://api.vidbeo.com/v2/videos/{VIDEO_ID}/chapters \
--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": []
}
Create a new chapter
curl --request POST \
--url https://api.vidbeo.com/v2/videos/{VIDEO_ID}/chapters \
--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": []
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the video
"abcde12345abcde12345a"
Chapter
The response is of type object
.