Video API
Analytics
Audit logs
Categories
Folders
Identity providers
Transcribes
Videos
- GETList videos
- POSTCreate video
- GETFetch video
- DELDelete video
- PATCHUpdate video
- POSTCreate track
- DELDelete track
- POSTReplace thumbnail
- POSTCreate card
- DELDelete card
- PATCHUpdate card
- POSTCreate gate
- DELDelete gate
- PATCHUpdate gate
- POSTCreate hotspot
- DELDelete hotspot
- PATCHUpdate hotspot
- POSTCreate chapter
- DELDelete chapter
- PATCHUpdate chapter
Videos
Update card
Update a card’s details
PATCH
/
videos
/
{VIDEO_ID}
/
cards
/
{CARD_ID}
Copy
curl --request PATCH \
--url https://api.vidbeo.com/v2/videos/{VIDEO_ID}/cards/{CARD_ID} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"show_at": "<string>",
"hide_at": "<string>",
"skip": true,
"top_text": "<string>",
"bottom_text": "<string>",
"link": "<string>"
}'
Copy
{
"success": true,
"result": {
"id": "abcde12345abcde12345a",
"name": "Example",
"show_at": "00:00:05",
"hide_at": "00:00:05",
"skip": false,
"top_text": "Example text",
"bottom_text": "Bottom text",
"link": "https://example.com"
},
"links": {},
"errors": []
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the video
Example:
"abcde12345abcde12345a"
ID of the card
Example:
"abcde12345abcde12345a"
Body
application/json
Response
200
application/json
Card
The response is of type object
.
Copy
curl --request PATCH \
--url https://api.vidbeo.com/v2/videos/{VIDEO_ID}/cards/{CARD_ID} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"show_at": "<string>",
"hide_at": "<string>",
"skip": true,
"top_text": "<string>",
"bottom_text": "<string>",
"link": "<string>"
}'
Copy
{
"success": true,
"result": {
"id": "abcde12345abcde12345a",
"name": "Example",
"show_at": "00:00:05",
"hide_at": "00:00:05",
"skip": false,
"top_text": "Example text",
"bottom_text": "Bottom text",
"link": "https://example.com"
},
"links": {},
"errors": []
}
Assistant
Responses are generated using AI and may contain mistakes.