1.0 | At a glance
The Enterprise dashboard displays a variety of usage statistics, consisting of the number of clips uploaded on a monthly basis (Media Created) and the total number of clips on disk (Media Stored).
![]()
The left sidebar allows you to edit enterprise users, add a new publication to the account, view detailed analytics, and drill into individual publications.
2.0 | Publications and sharing
This section allows you to upload media clips once and share them between multiple publications.
![]()
To begin sharing videos between publications, find the source publication, click on Share with and select the destination publication from the dropdown menu.
To stop sharing videos with a publication, click the x next to the publication below Shares content with.
3.0 | Searching across shared publications
By default, a media clip search only returns results from the publication you are searching in. Use the context parameter on a SAPI mediaclip query to broaden the search scope to linked publications.
Two values are supported:
context=shared: searches the linked publications only, excluding the publication you are querying from.context=all: searches the linked publications as well as the publication you are querying from.
Example: context=shared (linked publications only):
GET /sapi/mediaclip?limit=15&offset=0&sort=createddate desc&filterset=[{"filters":[{"type":"mediaclip","field":"fulltext","operator":"contains","value":["search term"]}]}]&context=sharedExample: context=all (linked publications and current publication):
GET /sapi/mediaclip?limit=15&offset=0&sort=createddate desc&filterset=[{"filters":[{"type":"mediaclip","field":"fulltext","operator":"contains","value":["search term"]}]}]&context=allThe context parameter can be combined with any existing filters in the filterset.