Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
Collection creation parameters
Type of collection, determines how videos are processed and what data is extracted.
Collection Types:
- media-descriptions: Generate comprehensive media descriptions with speech, visual, and text analysis (use
describe_config
) - entities: Extract structured data/entities from videos (requires
extract_config
) - rich-transcripts: Generate rich transcriptions with speech and visual descriptions (use
transcribe_config
). For backward compatibility only, new collections should usemedia-descriptions
instead.
⚠️ Important: Only provide the config that matches your collection_type. Other configs will be ignored.
media-descriptions
, entities
, rich-transcripts
Name of the collection (must be unique within an organization)
Description of the collection's purpose or contents, null if none provided
🎯 Use ONLY when collection_type = 'media-descriptions'
Configuration for comprehensive media description from videos. Optional - if not provided, default values will be used. This config will be ignored for other collection types.
🎯 Use ONLY when collection_type = 'entities'
Configuration for automatic entity extraction from videos. Required for entities collections. This config will be ignored for other collection types.
🎯 Use ONLY when collection_type = 'rich-transcripts'
Configuration for rich transcription from videos. Optional - if not provided, default values will be used. This config will be ignored for other collection types.
Default segmentation configuration to use for files added to this collection. If not provided, a default uniform segmentation will be used.
Default thumbnails configuration to use for files added to this collection. If not provided, a default thumbnails configuration will be used.
Response
Successful collection creation
Unique identifier for the collection
Object type, always 'collection'
collection
Name of the collection
Type of collection, determines how videos are processed and what data is extracted
media-descriptions
, entities
, rich-transcripts
Unix timestamp of when the collection was created
Number of files in the collection
Description of the collection's purpose or contents, null if none provided
Configuration for automatic entity extraction from videos. Required when collection_type is 'entities'.
Configuration for rich transcription from videos. Used when collection_type is 'rich-transcripts'. If not provided, default values will be used.
Configuration for comprehensive media description from videos. Used when collection_type is 'media-descriptions'. If not provided, default values will be used.
Default segmentation configuration used for files in this collection
Default thumbnails configuration used for files in this collection