curl --request GET \
--url https://api.mottostreaming.com/ott/platforms/v1/{platform_id} \
--header 'Authorization: Bearer <token>'
{
"platform": {
"id": "<string>",
"project_id": "<string>",
"name": "<string>",
"hosts": [
"<string>"
],
"locales": [
"<string>"
],
"default_locale": "<string>",
"title": {},
"logo_asset_id": "<string>",
"favicon_asset_id": "<string>",
"colors": {},
"navbar_entries": [
{
"title": {},
"url": "<string>"
}
],
"footer_entries": [
{
"title": {},
"url": "<string>"
}
],
"feature_configuration": {},
"scripts": "<string>",
"css": "<string>",
"integrations": {},
"colors_preview": {},
"feature_configuration_preview": {},
"scripts_preview": "<string>",
"css_preview": "<string>",
"integrations_preview": {},
"navbar_entries_preview": [
{
"title": {},
"url": "<string>"
}
],
"footer_entries_preview": [
{
"title": {},
"url": "<string>"
}
]
}
}
GetPlatform
Returns platform information by platform ID.
curl --request GET \
--url https://api.mottostreaming.com/ott/platforms/v1/{platform_id} \
--header 'Authorization: Bearer <token>'
{
"platform": {
"id": "<string>",
"project_id": "<string>",
"name": "<string>",
"hosts": [
"<string>"
],
"locales": [
"<string>"
],
"default_locale": "<string>",
"title": {},
"logo_asset_id": "<string>",
"favicon_asset_id": "<string>",
"colors": {},
"navbar_entries": [
{
"title": {},
"url": "<string>"
}
],
"footer_entries": [
{
"title": {},
"url": "<string>"
}
],
"feature_configuration": {},
"scripts": "<string>",
"css": "<string>",
"integrations": {},
"colors_preview": {},
"feature_configuration_preview": {},
"scripts_preview": "<string>",
"css_preview": "<string>",
"integrations_preview": {},
"navbar_entries_preview": [
{
"title": {},
"url": "<string>"
}
],
"footer_entries_preview": [
{
"title": {},
"url": "<string>"
}
]
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK
The response is of type object
.