POST
/
videos
/
{VIDEO_ID}
/
cards
curl --request POST \
  --url https://api.vidbeo.com/v2/videos/{VIDEO_ID}/cards \
  --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>"
}'
{
  "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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

VIDEO_ID
string
required

ID of the video

Example:

"abcde12345abcde12345a"

Body

application/json
name
string

A short label for the card

Maximum length: 100
show_at
string

The time-code the card should appear at, as HH:MM:SS

Maximum length: 8
hide_at
string

The time-code the card should hide at, as HH:MM:SS

Maximum length: 8
skip
boolean

Can the user skip/hide it?

top_text
string

The main text shown on the card

Maximum length: 100
bottom_text
string

The lower text shown on the card

Maximum length: 100

The URL viewers will be taken to if they click the card

Maximum length: 100

Response

200
application/json
Card
success
boolean
required
Example:

true

result
object
required
Example:
{}
errors
object[]
required
Example:
[]