Skip to main content
Skip table of contents

Reporting activity and event metrics to UAV

Overview

To enable the wide range of reports that OPF delivers out-of-the-box and to empower operators to create their own reports, the client must send certain data to the OPF platform for processing and storage.

The reported data is used to generate analytics reports that are available through TV Analytics.

The reported data is not available for querying by the client application.

You should follow the guidance below to report the relevant activities and to structure and provide the right data for those activities.

There are specific endpoints for handling bookmarks and favourites (which are not covered here). See Personalisation.

Any value within the metadata section can be left blank, but you need to understand that this data will not be available for processing or reporting. In addition, the client can add additional values in the metadata section in the key-value pair format as required – these additional values will be stored and available for custom reporting.

Prior to release 21.38, clients were required to report such activity and metrics separately so the recommendation engine used could provide personalised recommendations.

Since release 21.38, clients can report activity and metrics as described below and they will be passed on to the recommendation engine automatically without the client having to report them separately.

Request

To report metrics, make the following POST request:

http://<host>:<port>/useractivityvault/v1/useractivity/{activityName}

where activityName is the name of the activity you are reporting. You can use any name that you want, but the following are activity names that Platform understands and associates with regular (non-custom) reports:

  • privacyPolicy 
  • appStart 
  • appEnd 
  • playbackStart 
  • playbackStop 
  • playbackPause 
  • playbackSkipAhead 
  • playbackSkipBack 
  • adWatched 
  • adDeliverd 
  • adSkipped 
  • playbackHeartbeat 
  • scheduleRecording
  • watch 
  • playback_metrics 
  • playerError 
  • thirdPartyAppStart 
  • returnToLauncher 
  • deepLinkTriggered 
  • downloadTriggered  
  • railView 
  • railSelection

These are explained in more detail in the (22.38_Q3) Reporting activity and event metrics to UAV#Activities section below.

This API allows the client to report any activity or action that the operator feels is important or of value for capture. The documented activities below are the suggested actions for capture.

Headers

  • Content-Type: application/json
  • Authorisation

Mandatory arguments

  • accountID
  • userId – must be set to "" (empty string)
  • deviceId 
  • key – must be set to "" (empty string)

The following arguments are not strictly mandatory (that is, omitting them will not cause the request to fail), but are required for full and correct reporting. They are all specified as key/value pairs in the metadata block:

  • appSessionId – the appSessionId is used to indicate a period of time wherein a user interacts with the app. Usually triggered by the opening of an app, a session records the length and frequency of app use to show developers, marketers and product managers how much time users spend within an app. An app session id should be generated/starts when a user opens an application and ends when they exit it.
  • playbackSessionId – playback session ID, this session is specific to the playout of content, each time the content being played out is changed a new session ID should be generated and used when reporting playout session actions. 
  • editorialID – the ID of the editorial, which provides a unique content reference, 
  • contentSource – one of the following:
    • IPTV – TV content is delivered over an IP network (not the open Internet)
    • OTT – TV content is deliver over-the-top (OTT), that is, via the Internet
    • Blend – a mixture of IPTV and OTT
  • contentType – indicates the type of content being consumed: see the table below for expected values. 


    Description of Possible Content Types

    Corresponding Content-Type Value to use

    VOD content

    vod-ed 

    An event recorded through NPVR

    npvr-event 

    A live event

    live-event 
    An short-term catchup eventlive-stcu-event 
    A start-over eventstart-over 

    Download-to-go (D2G) content

    Note: any content that is being played back from local storage is considered D2G.

    D2G 

Note on metadata

Clients are free to report any additional metadata in the standard key-value pair format. Any metadata that does not map directly to the definitions in the activitytable below will still be stored in the Data Warehouse and be available for custom reporting.

It will be stored in a generic metadata table that can be joined via the activity ID. This allows the client to report any new data or additional data as required without having to make any changes to the Data Warehouse schema. 

Recommendations

In addition to being used for analytics and reporting, activities reported via this interface will also be used to drive recommendations via the partner recommendations engine. This requires specific data to be included in the activity object. For existing integrations, this data is already being supplied within the CDG call, but if the client is updated to include the following activities then the additional calls to CDG can be removed as they will no longer be required. 

The following table shows the default scoring (weighting) that OPF applies to each activity that is related to recommendations. For example, by default, a playbackStart event generates a message to the recommendation engine with a positive score of 0.7. The recommendation engine uses these scores to generate more accurate recommendations for users based on past activities. 

Activities used for recommendations

Default scoring (from -1 (worst) to 1 (best))

Required data
playbackStart

0.7


One of the following, dependent on the content type being watched:

TypeRequired value
VODTechnical ID
BTVProgram ID
Series or seasonSeries ID
scheduleRecording 0.7Program ID

watch 

1

One of the following, dependent on the content type being watched:

TypeRequired Value
VODTechnical ID
BTVProgram ID
Series or seasonSeries ID
deepLinkTriggered 0.5Deep link ID

downloadTriggered 

0.7Technical ID

Activities

We recommend your client app report the following types of activity with the aim of providing at least the listed metadata. In some cases not all of the metadata will be available. 

For details of the fields that you need to provide in these requests, see the (22.38_Q3) Reporting activity and event metrics to UAV#Fields table below.

Category

Activity name

Trigger

Description

Message metadata keys


Notes

Examples

Privacy

privacyPolicy User consent or non-consentAllows the client to capture the user's consent and related information in relation to any local or global policy. 
deviceId 
accountId 
consentForTargettedAd 
policyConsentGiven 
policyType 
policyShown 
policyRead 
policyString
dateTimeDevice 


The US privacy string (policyString) consists of the following components:

  • Specification version: a number that represents the version of the string specification
  • Explicit notice: An enum that represents whether the explicit notice has been provided (N  = no,  Y  = yes,   = not applicable)
  • Opt-out sale: an enum that represents whether the user has opted out of the sale of their data (N  = no,  Y  = yes,   = not applicable)

policyType – one of the following:

  • CCPA
  • GDPR
  • PDPA
POST https://<server>/useractivityvault/v1/useractivity/privacyPolicy
{
 "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "privacyPolicy",
  "deviceId": "60acc1efba91e2032c508e50",
  "key":"",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "consentForTargettedAd" : "",
    "policyConsentGiven" : "",
    "policyType" : "",
    "policyShown" : "",
    "policyRead" : "",
    "policyString" : "1YN"
  }
}
Standard

appStart Client session creationWhen app starts up 
appSessionId
deviceId
activityDateTime
accountID
userId

appSessionID  is created when application is started, persisted until application closed by user or due to inactivity. 

In mobile, a session begins when the app is opened (in the foreground) and ends when it goes into the background and no events occur within a predetermined time window, dependent on the measurement provider. Note that because of the typical multitasking nature of mobile users, events that occur within the predetermined window count towards the current session.

POST https://<server>/useractivityvault/v1/useractivity/appStart

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "appStart",
  "deviceId": "60acc1efba91e2032c508e50",
  "key":"",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
  "appSessionId" : "<UUID>",
  "activityDateTime": "2020-03-20T10:53:19Z"
  }
}

appEnd Client session tear downWhen app is shut down or times out due to inactivity
appSessionId
deviceId 
accountId
userId
activityDateTime

POST https://<server>/useractivityvault/v1/useractivity/appEnd

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "appEnd",
  "deviceId": "60acc1efba91e2032c508e50",
"key":"",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "appSessionId" : "<UUID>"
"activityDateTime": "2020-03-20T10:53:19Z"
  }
}

playbackStart Start of playback
appSessionId
playbackSessionId
editorialID
deviceId 
accountId
userId
contentSource
Type
railId
Depth
templateId
technicalId
programmeId
seresId
editorialID
deeplinkId
deviceType

Zero position event

The playbackSession needs to be associated with the playback event. 

playbackSessionId  – generated when playback starts.

POST https://<server>/useractivityvault/v1/useractivity/playbackStart

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "playbackStart",
  "key": "",
  "deviceId": "60acc1efba91e2032c508e50",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
   "deviceType": "ios",
    "recordingId": "ABC_1234",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "railId" : "<UUID>",
    "depth" : 77,
    "templateId" : "<UUID>",
   "editorialID" : "GLOBAL_20711"
  }
}

playbackStop User stops playback either with stop action or browsing away from playout
appSessionId
playbackSessionId
Position
editorialID
contentSource
Type
deviceId 
accountId
userId

POST https://<server>/useractivityvault/v1/useractivity/playbackStop

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "playbackStop",
  "key": "",
  "deviceId": "60acc1efba91e2032c508e50",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "recordingId": "ABC_1234",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "position" : 34,
 "editorialID" : "GLOBAL_20711"
  }
}

playbackPause User pauses playout
appSessionId
playbackSessionId
Position
editorialID
contentSource
contentType
deviceId 
accountId
userId

POST https://<server>/useractivityvault/v1/useractivity/playbackPause

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "playbackPause",
  "key": "",
  "deviceId": "60acc1efba91e2032c508e50",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "recordingId": "ABC_1234",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "position" : 34,
 "editorialID" : "GLOBAL_20711"
  }
}

playbackSkipAhead 

Fast forward or drag timeline forwardCovering fast forward or skip, allowing the tracking of the start point and the endpoint when playback resumes
appSessionId
playbackSessionId
startPosition
stopPosistion
editorialID
contentSource
contentType
deviceId 
accountId
userId

startPosition – when the skip is triggered

stopPosition – when playback is resumed


POST https://<server>/useractivityvault/v1/useractivity/playbackSkipAhead

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "playbackSkipAhead",
  "key": "",
  "deviceId": "60acc1efba91e2032c508e50",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "recordingId": "ABC_1234",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "startPosition" : 34,
    "stopPosition" : 50,
 "editorialID" : "GLOBAL_20711"
  }
}

playbackSkipBack Rewind or drag timeline backward Covering rewind  or skip back, allowing the tracking of the start point and the endpoint when playback resumes
appSessionId
playbackSessionId
startPosition
stopPosistion
editorialID
contentSource
contentType
deviceId 
accountId
userId

startPosition – when the skip is triggered

stopPosition – when playback is resumed

POST https://<server>/useractivityvault/v1/useractivity/playbackSkipBack

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "playbackSkipBack",
  "key": "",
  "deviceId": "60acc1efba91e2032c508e50",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "recordingId": "ABC_1234",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "startPosition" : 50,
    "stopPosition" : 24,
 "editorialID" : "GLOBAL_20711"
  }
}

adWatched Completion of viewing a delivered advert For ad tracking, allows the client to capture data on the adverts watched by the user 
appSessionId
playbackSessionId
adID
trackingAssetId
adSupplier
deviceId 
accountId
userId

POST https://<server>/useractivityvault/v1/useractivity/adWatched

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "adWatched",
  "key": "GLOBAL_20711",
  "deviceId": "60acc1efba91e2032c508e50",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "recordingId": "ABC_1234",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "adID" : "<UUID>",
    "trackingAssetId" : "<UUID>",
"adSupplier": "<name>"
  }
}

adDelivered
Ad delivered in a streamCapture adverts that are delivered, useful for reference if the user skips the ad
appSessionId
playbackSessionId
adID
trackingAssetId
adSupplier
deviceId 
accountId
userId

POST https://<server>/useractivityvault/v1/useractivity/adDeliverd

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "adDelivered",
  "key": "GLOBAL_20711",
  "deviceId": "60acc1efba91e2032c508e50",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "recordingId": "ABC_1234",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "adID" : "<UUID>",
    "trackingAssetId" : "<UUID>",
"adSupplier": "<name>"
  }
}

adSkipped
Skipping adverts where allowed.Capture the action of skipping an ad where allowed. 
appSessionId
playbackSessionId
adID
trackingAssetId
adSupplier
deviceId 
accountId
userId

POST https://<server>/useractivityvault/v1/useractivity/adSkipped

{
 "accountId": "60ab88ccb780b5233dfec9cd",
 "userId": "",
 "name": "adSkipped",
 "key": "GLOBAL_20711",
 "deviceId": "60acc1efba91e2032c508e50",
 "timestamp": "2020-03-20T10:53:19Z",
 "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "recordingId": "ABC_1234",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "adID" : "<UUID>",
    "trackingAssetId" : "<UUID>",
"adSupplier": "<name>"
  }
}

scheduleRecording
User triggers a recording to be created on OPF
appSessionId
playbackSessionId
editorialID
Series_Link
Series_Id
deviceId 
accountId
userId
technicalId
programmeId
seriesId
deeplinkId
deviceType
Platform could provide this with a small impact.
POST https://<server>/useractivityvault/v1/useractivity/scheduleRecording

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "name": "scheduleRecording",
  "key": "",
  "deviceId": "60acc1efba91e2032c508e50",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "recordingId": "ABC_1234",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "seriesLink" : "<UUID>",
    "seriesId" : "<UUID>",
 "editorialID" : "GLOBAL_20711",
 "technicalId" : "jkn193887",
    "programmeId" : "010928",
    "seriesId" : "298940",
    "deeplinkId" : "DeepL_20711",
"deviceType" : "ios"
  }
}

playbackHeartbeat

Created regularly to indicate that the user is watching a stream of content without interacting with the client. 

we recommend recording this activity every 60 seconds.

Heartbeat/playout time


Used to track playout at a granular level. This data is not recorded for operational use only used for reporting.

appSessionId
playbackSessionId
Position 
editorialID
Type
deviceId 
accountId
userId

If the player metrics are reported regularly with a matching session ID, we can use those for the streaming indicator.

POST https://<server>/useractivityvault/v1/useractivity/playbackHeartbeat

{
 "accountId": "60ab88ccb780b5233dfec9cd",
 "userId": "",
 "name": "playbackHeartbeat",
 "key": "",
 "deviceId": "60acc1efba91e2032c508e50",
 "timestamp": "2020-03-20T10:53:19Z",
 "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "recordingId": "ABC_1234",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "position" : 78,
 "editorialID" : "GLOBAL_20711"
  }
}

watch
Created when the user clicks the play option on contentCurrent activity that is reported on first playback
appSessionId
playbackSessionId
Position
editorialID
Type
railId
templateId
deviceId 
accountId
userId
Keep for backward compatibility.
POST https://<server>/useractivityvault/v1/useractivity/watch

{
 "accountId": "60ab88ccb780b5233dfec9cd",
 "userId": "",
 "key": "",
 "deviceId": "60acc1efba91e2032c508e50",
 "name": "watch",
 "timestamp": "2020-03-20T10:53:19Z",
 "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "recordingId": "ABC_1234",
    "playbackSessionId" : "<UUID>",
    "appSessionId" : "<UUID>",
    "position" : 789,
    "railId" : "<UUID>",
    "templateId" : "<UUID>",
 "contentId" : "GLOBAL_20711"
  }
}
QOE/QOS

Playback_Metrics

To be reported back at a consistent interval, this can be configured by clients. 

we recommend recording this activity every 60 seconds.

Metrics as supplied by the player and reported back via the client.  
appSessionId
playbackSessionId
Playback_Progress
Bitrate_selected 
Content_Type 
Available_Bitrate
bytes_Downloaded
avg_download_bitRate
Buffer_Duration
Stream_Bitrate
Dropped_Frames
Total_Frames
content_URI

POST https://<server>/useractivityvault/v1/useractivity/playback_metrics

{
  "accountId": "5fdc9fba4b2a7952d931019f",
  "userId": "",
  "deviceId": "604897f1695d7c6f961d6f23",
  "name": "playback_metrics",
  "key": "",
  "timestamp": 1615370562718,
  "metadata": {
    "playbackSessionId" : "<UUID>",
    "appSessionId" : "<UUID>",
   "editorialId" : "GLOBAL_89714_20210310090000",
    "playbackProgress" : "56",
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "selectedBitrate": "2000000",
    "availableBitrates": "[90000, 500000, 750000, 1100000, 2000000]",
    "bytesDownloaded": "1011433",
    "downloadBitrate": "7698824",
    "downloadBitrateAverage": "6593692",
    "uri": https://origin-nagravision-a-01.vos360.video/Content/DASH/Live/channel(HEVC_Test_Channel)/manifest.mpd,
    "bufferedDuration": "3",
    "streamBitrate": "2000000",
    "droppedVideoFrames": "0",
    "totalVideoFrames": "50"
  }
}

playerError
Log client side errors as requiredWhere required, useful to capture basic error information that relates to the user experience
appSessionId
playbackSessionId
editorialID
errorCode
errorMsg
playerTypeversion
deviceId
accountId
userId
Not to be used for logging or debugging. Use sparingly where the error will have impacted the user and would provide value for reporting. 
POST https://<server>/useractivityvault/v1/useractivity/playerError

{
 "accountId": "60ab88ccb780b5233dfec9cd",
 "userId": "",
  "name": "playerError",
  "key": "",
  "deviceId": "60acc1efba91e2032c508e50",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "appSessionId" : "<UUID>",
    "playbackSessionId" : "<UUID>",
    "errorCode" : "",
    "errorMsg" : "",
    "playerTypeVersion" : "",
 "editorialID" : "GLOBAL_20711"
  }
}
App Actions

thirdPartyAppStart
To be created when a third-party application is triggered/opened on the launcher 

Capture the act of starting a third-party application due to a deep link or the client acting as a launcher (Netflix, Prime, etc.).

appSessionId
playbackSessionId
appName
appReference 
deeplinkProviderId
railId
templateId
deviceId
accountId
userId

Deep link provider is the provider of the deep-linked content (e.g., Disney, Prime, etc .).

POST https://<server>/useractivityvault/v1/useractivity/thirdPartyAppStart

{
 "accountId": "60ab88ccb780b5233dfec9cd",
 "userId": "",
 "key": "GLOBAL_20711",
 "deviceId": "60acc1efba91e2032c508e50",
 "name": "thirdPartyAppStart",
 "timestamp": "2020-03-20T10:53:19Z",
 "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "playbackSessionId" : "<UUID>",
    "appSessionId" : "<UUID>",
    "appName" : "",
    "appReference" : "",
    "railId" : "<UUID>",
    "templateId" : "<UUID>"
  }
}

returnToLauncher
To be created when the launcher becomes the active appLauncher becomes active 
appSessionId
playbackSessionId
app_name
deviceId
accountId
userId

POST https://<server>/useractivityvault/v1/useractivity/returnToLauncher

{
 "accountId": "60ab88ccb780b5233dfec9cd",
 "userId": "",
 "key": "GLOBAL_20711",
 "deviceId": "60acc1efba91e2032c508e50",
 "name": "returnToLauncher",
 "timestamp": "2020-03-20T10:53:19Z",
 "metadata": {
    "contentSource": "IPTV",
    "contentType": "live-stcu-event",
    "playbackSessionId" : "<UUID>",
    "appSessionId" : "<UUID>",
    "appName" : ""
  }
}

deepLinkTriggered
To be created when a deep linked asset is selected via the clientClicking through to watch content from a Rail or other client source on a deep link provider
appSessionId
playbackSessionId
deeplinkProviderId
Source
editorialID
providerResourceId
railId
templateId
deviceId
accountId
userId

Provider ID is the content ID as provided in the deep link data.

Deep link provider is the provider of the deep-linked content (Disney, Prime, etc.).

POST https://<server>/useractivityvault/v1/useractivity/deepLinkTriggered

{
 "accountId": "60ab88ccb780b5233dfec9cd",
 "userId": "",
 "key": "GLOBAL_20711",
 "deviceId": "60acc1efba91e2032c508e50",
 "name": "deepLinkTriggered",
 "timestamp": "2020-03-20T10:53:19Z",
 "metadata": {
    "contentSource": "IPTV",
    "contentType": "deeplinktriggered",
    "playbackSessionId" : "<UUID>",
    "appSessionId" : "<UUID>",
    "deeplinkProviderId" : "",
    "source" : "",
    "providerResourceId" : "", 
"deeplinkId" : "<UUID>",
    "railId" : "<UUID>",
    "templateId" : "<UUID>",
 "editorialID" : "GLOBAL_20711"
  }
}

downloadTriggered
To be created when content is downloaded for watching off line, aka D2G.

Download to go 

Capture the action when a user triggers the download of content 

appSessionId
playbackSessionId
editorialID
railId
templateId
deviceId
accountId
userId

POST https://<server>/useractivityvault/v1/useractivity/downloadTriggered

{
 "accountId": "60ab88ccb780b5233dfec9cd",
 "userId": "",
 "key": "",
 "deviceId": "60acc1efba91e2032c508e50",
 "name": "downloadTriggered",
 "timestamp": "2020-03-20T10:53:19Z",
 "metadata": {
    "contentType": "live-stcu-event",
    "playbackSessionId" : "<UUID>",
    "appSessionId" : "<UUID>",
    "railId" : "<UUID>",
    "templateId" : "<UUID>",
 "editorialID" : "GLOBAL_20711"
  }
}
Rails-specific

railView
Created when the Rail is shown on the screen (user engagement measure)
appSessionId
playbackSessionId
templateId
railId
depth
deviceId 
accountId
userId

POST https://<server>/useractivityvault/v1/useractivity/railView

{
  "accountId": "60ab88ccb780b5233dfec9cd",
  "userId": "",
  "key": "GLOBAL_20711",
  "deviceId": "60acc1efba91e2032c508e50",
  "name": "railView",
  "timestamp": "2020-03-20T10:53:19Z",
  "metadata": {
    "contentType": "live-stcu-event",
    "playbackSessionId" : "<UUID>",
    "appSessionId" : "<UUID>",
    "depth" : "",
    "railId" : "<UUID>",
    "templateId" : "<UUID>"
  }
}

railSelection
Created when a user selects a Rail item to open the media card/more detail 
appSessionId
playbackSessionId
templateId
railId
sectionId
editorialID
Type
deviceId 
accountId
userId
deeplinkProviderId
providerResourceId

POST https://<server>/useractivityvault/v1/useractivity/railSelection

{
 "accountId": "60ab88ccb780b5233dfec9cd",
 "userId": "",
 "key": "",
 "deviceId": "60acc1efba91e2032c508e50",
 "name": "railSelection",
 "timestamp": "2020-03-20T10:53:19Z",
 "metadata": {
    "contentType": "live-stcu-event",
    "playbackSessionId" : "<UUID>",
    "appSessionId" : "<UUID>",
    "sectionId" : "",
    "railId" : "<UUID>",
 "editorialID" : "GLOBAL_20711",
 "providerResourceId" : "",
 "deeplinkProviderId" : "",
    "templateId" : "<UUID>"  }
}

Fields

FieldDefinition
accountIdThe account ID of the current signed-in account 
activityDateTimeDate and time in UTC that the event/action being logged occurred 
adIDUnique advertisement reference, VAST tag
adSupplierName or unique ID of the advert supplier
appNameText name of the application reporting the metrics. This is used to easily identify the app in the database. Equivalent to tenant ID in the token.
appReference Reference for the application. This could be an ID or text value. To be deprecated.
appSessionIdUnique ID to identify the current session of the application. Generated by the application upon start up and persisted until the next start up. The appSessionId is used to indicate a period of time wherein a user interacts with the app. Usually triggered by the opening of an app, a session records the length and frequency of app use to show developers, marketers, and product managers how much time users spend within an app. An app session ID should be generated / starts when a user opens an application and ends when they exit it.
appVersionVersion number for the currently deployed application
Available_BitrateText value to indicate the bitrates available for the content being streamed, available from the player. Content available bitrates in bits per second (bps)
avg_download_bitRateThe average value of the bitrate stream, available from the player. Average selected bitrate in bits per second (bps) (sampled and averaged within the reporting period)
Bitrate_selected Bitrate selected for viewing (streaming) available from the player 
Buffer_DurationThe current buffer duration in seconds at the time of reporting metrics, available from the player
bytes_DownloadedTotal number of bytes downloaded at the time of reporting the metrics, available from the player 
clientLoggedDateTimeThe date and time the event is logged as per the date and time set on the client device. (This may not be the same as the date and time set server side.) 
consentForTargettedAd If the user has consented to targeted advertising, this value should be reported as true.
Content_Type Indicates the type of content being consumed. See content_Type in Mandatory arguments above.
content_URIURI of the video stream, available from the player. This URI points to the master playlist.
contentQualityChangedCurrent content quality (SD, HD, 4K, 8K, Unknown)
contentSourceOne of the following:
  • IPTV – TV content is delivered over an IP network (not the open Internet)
  • OTT – TV content is deliver over-the-top (OTT), that is, via the Internet – DVB and more
  • Blend – a mixture of IPTV and OTT
deeplinkIdUnique value assigned to the deep link being triggered. This will be found in the metadata supplied to the client. A deep link is a reference from some content to the same content in an external, third-party system. For example the same movie present in Netflix, Disney+, or Apple TV.
deeplinkProviderIdUnique value assigned to the deep link provider. This will be found in the metadata supplied to the client.
depthRelevant for Rails interactions, the depth of the item interacted with by the user, click, media card or playout. Vertical position
deviceId Unique device ID as provided by the platform to the client.
deviceTypeValue as defined in First time and n-th time sign on
Dropped_FramesNumber of frames dropped from the video stream, available from the player 
editorialID

Available in the metadata provided by the head end. editorialID should be:

  • Rails Builder CUs/search: simple ID
  • Rails Builder current event: editorial ID
  • EPG: contentRef
errorCodeUnique code that relates to an error. This can be a standard code or client application specific.
errorMsgThe relevant error message related to the error
hdepthRAILS – the horizontal depth of the rail item being interacted with / reported on, starting at 0 and counted from the first item / leftmost item in the Rail incrementally 
metadataGeneric activity 
Position The position in seconds that the current action relates to in the current content being streamed in seconds. This should be in relation to the content being viewed in totality, i.e., if the user is watching the 20th minute of a show, the value reported should be 1200. If the user starts playout from a bookmark at the 10th minute then the value reported should be 600.
Playback_ProgressThe position in seconds that the current action relates to in the current content being streamed in seconds. This should be in relation to the content being viewed in totality, i.e., if the user is watching the 20th minute of a show, the value reported should be 1200. If the user starts playout from a bookmark at the 10th minute then the value reported should be 600.
playbackSessionIdTo be generated by the client application. A unique playback session ID, this session is specific to the playout of content. Each time the content being played is changed either via a selection triggered by the user or due to the channel playout content changing, a new session ID should be generated and used when reporting playout session actions. The session ID (UUID) corresponds to the current session. For non-linear content such as VOD, a playback session occurs between the start of playing of a video until it stops (or aborts or crashes) not interrupted by pauses or seeks.
playerTypeversionVersion number of the player being used/integrated into the client
PlayoutURLThe URL of the content being streamed, the video stream URL, URI pointing to the master playlist
policyConsentGiven If the user has consented to the policy shown on screen this value should be reported as true, if not then false.
policyRead If the user has indicated they have read the policy this value should be reported as true, if not, then false.
policyShown If the client has shown the policy on screen to the end user this value should be reported as true, if not, then false.
policyType The type of policy shown/consented to, e.g., Data Retention
programmeIdIdentifier for a TV programme as provided by the platform in the metadata response (a live TV programme). It is shown on a specific service at a certain time. See /btv/programmes.
railIdThe unique ID of the Rail being interacted with or reported on, as supplied in the RAILS metadata response from the head end.
SDKVersionThe video metrics SDK version installed on the client application 
selectedBitrateChangedBitrate in bps that was selected after bitrate changed event
seriesIdThe series ID as supplied in the metadata from the head end
source

Broadcast source (DVB or OTT) for each channel, see  Using metadata to select the broadcast source.

Stream_BitrateThe current bit rate being consumed, supplied by the player
technicalIdThis unique ID is specific to the content stream provided to the client, supplied in the response to the client. The technical part of the content (Playback URI, Device Type, etc). Usually hidden from the end-user, describes to the device if it is allowed to play content and where to get it.
templateIdRAILS template ID that the client is rendering for the user to interact with, supplied in the response to the client 
timeToVideoStartTime taken from setUrl to rendering of the first frame on the screen
Total_FramesTotal frame count, available from the player  
trackingAssetIdA unique ID for tracking, as generated by the client 
TypeSee Content_Type.
userIdUnique ID to identify a specific user or user profile
vdepthRAILS – the vertical depth of the rail being interacted with / reported on starting at 0 and counted from the first/top rail incrementally 
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.