Index or Embed Videos
Index videos in a collection
Add videos to a collection for indexing. The videos will be indexed and made searchable. Indexing status or embedding of the video can be retrieved from get media endpoint The videos must be http(s) url to raw video files (e.g. mp4, mov, avi) and not web pages or cloud storage services URIs. The videos url must be http(s) url to raw video files (e.g. mp4, mov, avi); Youtube web pages or cloud storage services URIs would not work.
POST
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
The ID of the collection to add the video to
Example:
"c1a2b3c4-1a2b-3c4d-5e6f-7g8h9i0j1k2l"
List of videos to add. Maximum 10 media can be added per request
Example:
{
"external_id": "video_1",
"title": "My Video1",
"url": "https//example.com/video1.mp4"
}
Response
200
application/json
Successful Response
Was this page helpful?