Generic video uploads are granted through account-level token access. Unlike other video uploads, generic video uploads do not associate with a video experience and are not linked to ChipBot.
Generic video uploads grant customers access to ChipBot’s Video APIs for their own purposes outside ChipBot. For pricing on usage and storage, please email support@getchipbot.com.
Authorization type: Account
There are three steps to uploading a video.
curl "https://getchipbot.com/api/v2/connect/accounts/{accountId}/videos/tokens" \
-H 'Authorization: {token}'
curl -X "POST" "https://getchipbot.com/api/v2/utility/video-upload/request" \
-H 'Authorization: {token}' \
-d $'{
"checksumMd5": "md5-of-file",
"size": 12345,
"data": {},
"topic": "generic",
"jobs": ['480p']
}'
Body payload
curl --form file='@filename' -X "POST" "https://getchipbot.com/api/v2/utility/video-upload?token={uploadToken}"