Create video container with all informations and configurations
Request
Add parameter in header Authorization
Example:Authorization: ********************
Body Params application/x-www-form-urlencoded
Request samples
curl --location --request POST '/videos/live' \
--header 'Accept: application/json' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization;' \
--data-urlencode 'title=This is a title' \
--data-urlencode 'description=New description' \
--data-urlencode 'tag_ids[]=3487' \
--data-urlencode 'privacy=public' \
--data-urlencode 'collection_id=9953' \
--data-urlencode 'startdate=2024-10-01 12:00:00' \
--data-urlencode 'record_video=false'
Responses
application/json {
"id": "<string>",
"status": "<string>"
}
Modified at 2024-09-05 06:36:50