Video Series

URIs

EnvironmentURI
Productionhttps://api.freewheel.tv/services/v4/series/[FW_ID]?[parameter1]=[query1]&...

📘

Note

The Video Series Update Child Videos Relations endpoint has been deprecated. There is no active development on it and no feature requests can be made. It will soon be removed, at which time it will no longer function nor be supported.

Attributes

NameTypeDescriptionCreatable?Updatable?Validations
idFW_IDID of the Series in FreeWheelNoNo
network_idIntegerID of the Series' networkNoNo
nameStringSeries nameReqYesUnique
external_idStringThe Series' External IDYesYes
descriptionStringDescription of the SeriesYesYes
rating['G', 'PG', 'PG-13', 'R', 'Mature', 'Unrated']Series rating. Default value is 'Unrated'.YesYes
customized_metadataCustom Data Type 3Custom metadata for the SeriesYesYes
vod_metadataStringVOD metadataYesYes
metadataStringSeries metadataYesYes
status['ACTIVE', 'INACTIVE'] Must be provided in ALL CAPITAL letters.Series statusYesYes
updated_atDateTimeLast updated timeNoNo
created_atDateTimeCreated timeNoNo

Custom Data Type 3: customized_metadata

NameTypeCreatable?Updatable?Validations
keyStringYesYesUnique
valueStringYesYes

JSON Sample

{
      "customized_metadata":{
          "key1":"value1",
          "key2":"value2"
      }
  }

XML Sample

<series>
  ...
    <customized_metadata>
        <key_value>
            <key>key1</key>
            <value>value1</value>
        </key_value>
        <key_value>
            <key>key2</key>
            <value>value2</value>
        </key_value>
    </customized_metadata>
  </series>