Get Started
Studio API
- Introduction
- Streaming
- CMS
- OTT
- Platforms
- Banners
- Monetization
- IAM
- Integration
- Analytics
Content Delivery API
Deep dive
Batch get file kinds
BatchGetFileKinds
Returns kinds of files by file_kind IDs.
curl --request GET \
--url https://api.mottostreaming.com/ott/file_kinds/v1/batch \
--header 'Authorization: Bearer <token>'
{
"file_kinds": [
{
"id": "<string>",
"name": "<string>",
"environment": "<string>",
"description": "<string>",
"content_types": [
"<string>"
],
"min_count": 123,
"max_count": 123,
"max_size": "<string>",
"template": "<string>",
"category": "<string>",
"priority": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Response
The id of the file kind.
The name of the file kind. For example, "Info.plist", "brandFont.ttf", "secondaryFont.ttf", "splashScreen.png", etc. This is the name the file will be given when used in the environment project / build pipeline.
The environment to which this filetype belongs. The available options are: "web", "ios", "android", "tvos", "lg", "samsung", "androidtv"
The description of the file kind.
The expected content type(s) of the file. For example, "image/jpeg", "video/mp4", "application/pdf".
The minimum number of files required of this kind. Default to 0.
The maximum number of files allowed of this kind. Default to 1. If more than 1 file of this kind is provided, it is up to the build pipeline to decide how to handle multiple files.
The maximum number of bytes allowed for a single file of this kind. Default to 5 Mb (1024 * 1024 * 5).
A template that can be used to understand what the file should look like. Depending on the content_type, this may be more or less useful.
The category of the file kind.
The priority of the file kind. A higher priority means that the file kind is more important, and will appear earlier in the list.
curl --request GET \
--url https://api.mottostreaming.com/ott/file_kinds/v1/batch \
--header 'Authorization: Bearer <token>'
{
"file_kinds": [
{
"id": "<string>",
"name": "<string>",
"environment": "<string>",
"description": "<string>",
"content_types": [
"<string>"
],
"min_count": 123,
"max_count": 123,
"max_size": "<string>",
"template": "<string>",
"category": "<string>",
"priority": "<string>"
}
]
}