Hey, how can we help?

browse

Table of Contents


 

Overview

Wurl’s SSAI solution sends Server-Side ad impression beacons by default.  However, some Streaming Services may be required to send client-side beacons on some devices. This is supported by Wurl via the Client Tracking API.

This document provides a detailed specification for how to disable server-side beaconing and the API to poll tracking for client-side beaconing. 

 

Client Tracking API - MediaTailor Stream Formats

Usage: For Stream URLs that contain the word “mediatailor.”

This section describes the 2 steps required to enable client-side beaconing for Wurl streams:

  1. Disabling server-side beaconing by adding a query parameter
  2. Session initialization and Session start are inclusive with the client retrieval of the first request of the master playlist/playback URL (HTTP method GET).
  3. Calling the Client Tracking API to poll for impression beacons by the app.  It is recommended to poll the client tracking API every manifest request.

In the Playback URL construction, append the KVP “aws.reportingMode=client”.  This will disable server-side beaconing, for platforms which require client-side beaconing.

When requesting the playback URL endpoint (the HLS master manifest), the client tracking API endpoint can be constructed based on response.  Additional KVPs are omitted from the following examples for clarity.

$ curl "https://f0c39e4bb7274089a76288bc1c3e9a4f.mediatailor.us-east-1.amazonaws.com/v1/master/c05946d95894fc7462ef88cc98dfc97cc1f6994e/TEST_videoservice_c3/playlist.m3u8?aws.reportingMode=client"

#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA:LANGUAGE="en",AUTOSELECT=YES,FORCED=NO,TYPE=SUBTITLES,URI="../../../manifest/c05946d95894fc7462ef88cc98dfc97cc1f6994e/TEST_videoservice_c3/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc/4.m3u8",GROUP-ID="subtitles",DEFAULT=NO,NAME="English[VTT]"
#EXT-X-MEDIA:LANGUAGE="en",AUTOSELECT=NO,FORCED=NO,INSTREAM-ID="CC1",TYPE=CLOSED-CAPTIONS,GROUP-ID="captions",DEFAULT=NO,NAME="English"
#EXT-X-STREAM-INF:CODECS="avc1.42000d,mp4a.40.2",RESOLUTION=384x216,SUBTITLES="subtitles",BANDWIDTH=524288,CLOSED-CAPTIONS="captions"
../../../manifest/c05946d95894fc7462ef88cc98dfc97cc1f6994e/TEST_videoservice_c3/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc/0.m3u8
#EXT-X-STREAM-INF:CODECS="avc1.42001e,mp4a.40.2",RESOLUTION=640x360,SUBTITLES="subtitles",BANDWIDTH=1228800,CLOSED-CAPTIONS="captions"
../../../manifest/c05946d95894fc7462ef88cc98dfc97cc1f6994e/TEST_videoservice_c3/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc/1.m3u8
#EXT-X-STREAM-INF:CODECS="avc1.42001f,mp4a.40.2",RESOLUTION=960x540,SUBTITLES="subtitles",BANDWIDTH=2048000,CLOSED-CAPTIONS="captions"
../../../manifest/c05946d95894fc7462ef88cc98dfc97cc1f6994e/TEST_videoservice_c3/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc/2.m3u8
#EXT-X-STREAM-INF:CODECS="avc1.42001f,mp4a.40.2",RESOLUTION=1280x720,SUBTITLES="subtitles",BANDWIDTH=3072000,CLOSED-CAPTIONS="captions"
../../../manifest/c05946d95894fc7462ef88cc98dfc97cc1f6994e/TEST_videoservice_c3/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc/3.m3u8

 

In the initial requested playback URL, note the base URL highlighted in purple. Within the response, a Session ID in green is provided for each rendition manifest.

$ curl "https://f0c39e4bb7274089a76288bc1c3e9a4f.mediatailor.us-east-1.amazonaws.com/v1/tracking/c05946d95894fc7462ef88cc98dfc97cc1f6994e/TEST_videoservice_c3/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc"

{"avails":[],"nextToken":null,"nonLinearAvails":[]}

 

The constructed client API includes the base URL (substituting the text “master” for “tracking”) and is appended with the Session ID.  The response will include ad tracking data, so long as there are ad segments in the manifest.  In the above example, there was no current ad break, so no avails were listed.  

 

Client Tracking API - Wurl.com Stream Formats

Usage: For Streams that contain “wurl.com” in the Stream Playback URL, instead of “mediatailor”.

This section describes the 2 steps required to enable client-side beaconing for Wurl streams:

  1. Disabling server-side beaconing by adding a query parameter
  2. Session initialization and Session start are inclusive with the client retrieval of the first request of the master playlist/playback URL (HTTP method GET).
  3. Calling the Client Tracking API to poll for impression beacons by the app.  It is recommended to poll the client tracking API every manifest request.

In the Playback URL construction, append the KVP “aws.reportingMode=client”.  This will disable server-side beaconing, for platforms which require client-side beaconing.

When requesting the playback URL endpoint (the HLS master manifest), the client tracking API endpoint can be constructed based on response.  Additional KVPs are omitted from the following examples for clarity.

$ curl "https://dd73d784.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmVkYm94X01TR1Nwb3J0c1pvbmVfSExT/playlist.m3u8?aws.reportingMode=client"

#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA:LANGUAGE="en",AUTOSELECT=YES,FORCED=NO,TYPE=SUBTITLES,URI="../../../manifest/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmVkYm94X01TR1Nwb3J0c1pvbmVfSExT/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc/4.m3u8",GROUP-ID="subtitles",DEFAULT=NO,NAME="English[VTT]"
#EXT-X-MEDIA:LANGUAGE="en",AUTOSELECT=NO,FORCED=NO,INSTREAM-ID="CC1",TYPE=CLOSED-CAPTIONS,GROUP-ID="captions",DEFAULT=NO,NAME="English"
#EXT-X-STREAM-INF:CODECS="avc1.42000d,mp4a.40.2",RESOLUTION=384x216,SUBTITLES="subtitles",BANDWIDTH=524288,CLOSED-CAPTIONS="captions"
../../../manifest/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmVkYm94X01TR1Nwb3J0c1pvbmVfSExT/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc/0.m3u8
#EXT-X-STREAM-INF:CODECS="avc1.42001e,mp4a.40.2",RESOLUTION=640x360,SUBTITLES="subtitles",BANDWIDTH=1228800,CLOSED-CAPTIONS="captions"
../../../manifest/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmVkYm94X01TR1Nwb3J0c1pvbmVfSExT/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc/1.m3u8
#EXT-X-STREAM-INF:CODECS="avc1.42001f,mp4a.40.2",RESOLUTION=960x540,SUBTITLES="subtitles",BANDWIDTH=2048000,CLOSED-CAPTIONS="captions"
../../../manifest/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmVkYm94X01TR1Nwb3J0c1pvbmVfSExT/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc/2.m3u8
#EXT-X-STREAM-INF:CODECS="avc1.42001f,mp4a.40.2",RESOLUTION=1280x720,SUBTITLES="subtitles",BANDWIDTH=3072000,CLOSED-CAPTIONS="captions"
../../../manifest/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmVkYm94X01TR1Nwb3J0c1pvbmVfSExT/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc/3.m3u8

 

In the initial requested playback URL, note the base URL highlighted in purple. Within the response, a Session ID in green is provided for each rendition manifest.

$ curl "https://dd73d784.wurl.com/tracking/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmVkYm94X01TR1Nwb3J0c1pvbmVfSExT/435fb5c8-c8f7-4ebb-bcfc-901be909a9cc"

{"avails":[],"nextToken":null,"nonLinearAvails":[]}

 

The constructed client API includes the base URL (substituting the text “master” for “tracking”) and is appended with the Session ID.  The response will include ad tracking data, so long as there are ad segments in the manifest. In the above example, there was no current ad break, so no avails were listed.  

 

Tracking API Response Example

The following example shows the avails listed while ad segments are present in the manifest.

The output includes a list of ads and associated timing information.  For each ad, there are lists of trackingEvents and associated lists of beaconURLs to be requested by the client.  Is it important to fire off all beaconURLs as everyone in the demand chain must be notified. 

nams-MacBook-Pro:~ nam$ curl 
or.us-east-1.amazonaws.com/v1/tracking/c05946d95894fc7462ef88cc98dfc97cc1f6994e/
TEST_videoservice_c3/86638ec3-aaa6-4a6e-9a9c-84d0abc63e7f"
{ "avails": [ { "adBreakTrackingEvents": [], "ads": [ { "adId": "316412", "adParameters": "", "adSystem": "SpringServe", "adTitle": "Apple_Video_Ad_15_Family_Remote", "adVerifications": [], "companionAds": [], "creativeId": "16882", "creativeSequence": "", "duration": "PT15.015S", "durationInSeconds": 15.015, "extensions": [ { "content": "-983894348", "type": "springserve" } ], "mediaFiles": { "mediaFilesList": [], "mezzanine": "" }, "skipOffset": null, "startTime": "PT11M7S", "startTimeInSeconds": 667.0, "trackingEvents": [ { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_complete&dtid=640481&a_cc=rs.2590-s.629422-ap.8094-d.640481-cv.16882&cb=4894512917435&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-983894348&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316414", "eventType": "complete", "startTime": "PT11M22.015S", "startTimeInSeconds": 682.015 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_start&dtid=640481&a_cc=rs.2590-s.629422-ap.8094-d.640481-cv.16882&cb=4894512917435&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-983894348&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316412", "eventType": "start", "startTime": "PT11M7S", "startTimeInSeconds": 667.0 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=vast_impression&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&d=&size=1920x1080&id=629422&a_cc=rs.2590-s.629422-ap.8094-d.640481-cv.16882&cb=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&timestamp=1621914181689&aid=941&hc=-983894348&_apssf=15&_pi=1&_j=" ], "duration": "PT15.015S", "durationInSeconds": 15.015, "eventId": "316412", "eventType": "impression", "startTime": "PT11M7S", "startTimeInSeconds": 667.0 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_midpoint&dtid=640481&a_cc=rs.2590-s.629422-ap.8094-d.640481-cv.16882&cb=4894512917435&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-983894348&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316413", "eventType": "midpoint", "startTime": "PT11M14.5075S", "startTimeInSeconds": 674.507 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_third_quartile&dtid=640481&a_cc=rs.2590-s.629422-ap.8094-d.640481-cv.16882&cb=4894512917435&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-983894348&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316413", "eventType": "thirdQuartile", "startTime": "PT11M18.26125S", "startTimeInSeconds": 678.261 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_click&dtid=640481&a_cc=rs.2590-s.629422-ap.8094-d.640481-cv.16882&cb=4107315228299&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-983894348&_pi=1&_j=" ], "duration": "PT15.015S", "durationInSeconds": 15.015, "eventId": "316412", "eventType": "clickThrough", "startTime": "PT11M7S", "startTimeInSeconds": 667.0 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_first_quartile&dtid=640481&a_cc=rs.2590-s.629422-ap.8094-d.640481-cv.16882&cb=4894512917435&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-983894348&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316412", "eventType": "firstQuartile", "startTime": "PT11M10.75375S", "startTimeInSeconds": 670.753 } ], "vastAdId": "640481-1" }, { "adId": "316415", "adParameters": "", "adSystem": "SpringServe", "adTitle": "transcoded_1920x108020200422-14181-ackqn8", "adVerifications": [], "companionAds": [], "creativeId": "37916", "creativeSequence": "", "duration": "PT30.063S", "durationInSeconds": 30.063, "extensions": [ { "content": "-1104837487", "type": "springserve" } ], "mediaFiles": { "mediaFilesList": [], "mezzanine": "" }, "skipOffset": null, "startTime": "PT11M22.015S", "startTimeInSeconds": 682.015, "trackingEvents": [ { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_complete&dtid=850184&a_cc=rs.2590-s.629422-ap.8094-d.850184-cv.37916&cb=1471355824262&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1104837487&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316419", "eventType": "complete", "startTime": "PT11M52.078S", "startTimeInSeconds": 712.078 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_start&dtid=850184&a_cc=rs.2590-s.629422-ap.8094-d.850184-cv.37916&cb=1471355824262&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1104837487&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316415", "eventType": "start", "startTime": "PT11M22.015S", "startTimeInSeconds": 682.015 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=vast_impression&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&d=&size=1920x1080&id=629422&a_cc=rs.2590-s.629422-ap.8094-d.850184-cv.37916&cb=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&timestamp=1621914181689&aid=941&hc=-1104837487&_apssf=30&_pi=1&_j=" ], "duration": "PT30.063S", "durationInSeconds": 30.063, "eventId": "316415", "eventType": "impression", "startTime": "PT11M22.015S", "startTimeInSeconds": 682.015 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_midpoint&dtid=850184&a_cc=rs.2590-s.629422-ap.8094-d.850184-cv.37916&cb=1471355824262&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1104837487&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316417", "eventType": "midpoint", "startTime": "PT11M37.0465S", "startTimeInSeconds": 697.046 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_third_quartile&dtid=850184&a_cc=rs.2590-s.629422-ap.8094-d.850184-cv.37916&cb=1471355824262&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1104837487&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316418", "eventType": "thirdQuartile", "startTime": "PT11M44.56225S", "startTimeInSeconds": 704.562 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_click&dtid=850184&a_cc=rs.2590-s.629422-ap.8094-d.850184-cv.37916&cb=8412817237654&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1104837487&_pi=1&_j=" ], "duration": "PT30.063S", "durationInSeconds": 30.063, "eventId": "316415", "eventType": "clickThrough", "startTime": "PT11M22.015S", "startTimeInSeconds": 682.015 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_first_quartile&dtid=850184&a_cc=rs.2590-s.629422-ap.8094-d.850184-cv.37916&cb=1471355824262&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1104837487&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316416", "eventType": "firstQuartile", "startTime": "PT11M29.53075S", "startTimeInSeconds": 689.53 } ], "vastAdId": "850184-2" }, { "adId": "316420", "adParameters": "&referer=-", "adSystem": "Wurl", "adTitle": "Test MP4 Creative 1", "adVerifications": [], "companionAds": [], "creativeId": "-96682984", "creativeSequence": "", "duration": "PT30.564S", "durationInSeconds": 30.564, "extensions": [ { "content": "-96682984", "type": "springserve" } ], "mediaFiles": { "mediaFilesList": [], "mezzanine": "" }, "skipOffset": null, "startTime": "PT11M52.078S", "startTimeInSeconds": 712.078, "trackingEvents": [ { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.q4.txt", "https://vid-io-iad.springserve.com/vd/i?event=js_complete&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=2052278558688&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-96682984&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316424", "eventType": "complete", "startTime": "PT12M22.642S", "startTimeInSeconds": 742.642 }, { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.q0.txt", "https://vid-io-iad.springserve.com/vd/i?event=js_start&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=2052278558688&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-96682984&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316420", "eventType": "start", "startTime": "PT11M52.078S", "startTimeInSeconds": 712.078 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=vast_impression&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&d=&size=1920x1080&id=629422&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&timestamp=1621914181689&aid=941&hc=-96682984&_apssf=30&_pi=1&_j=", "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.impression.txt", "" ], "duration": "PT30.564S", "durationInSeconds": 30.564, "eventId": "316420", "eventType": "impression", "startTime": "PT11M52.078S", "startTimeInSeconds": 712.078 }, { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.q2.txt", "https://vid-io-iad.springserve.com/vd/i?event=js_midpoint&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=2052278558688&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-96682984&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316422", "eventType": "midpoint", "startTime": "PT12M7.36S", "startTimeInSeconds": 727.36 }, { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.q3.txt", "https://vid-io-iad.springserve.com/vd/i?event=js_third_quartile&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=2052278558688&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-96682984&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316423", "eventType": "thirdQuartile", "startTime": "PT12M15.001S", "startTimeInSeconds": 735.001 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_click&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=237415031335&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-96682984&_pi=1&_j=" ], "duration": "PT30.564S", "durationInSeconds": 30.564, "eventId": "316420", "eventType": "clickThrough", "startTime": "PT11M52.078S", "startTimeInSeconds": 712.078 }, { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.q1.txt", "https://vid-io-iad.springserve.com/vd/i?event=js_first_quartile&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=2052278558688&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-96682984&_pi=1&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316421", "eventType": "firstQuartile", "startTime": "PT11M59.719S", "startTimeInSeconds": 719.719 }, { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.error.txt" ], "duration": "PT30.564S", "durationInSeconds": 30.564, "eventId": "316420", "eventType": "error", "startTime": "PT11M52.078S", "startTimeInSeconds": 712.078 } ], "vastAdId": "604738-3" }, { "adId": "316425", "adParameters": "&referer=-", "adSystem": "Wurl", "adTitle": "Test MP4 Creative 2", "adVerifications": [], "companionAds": [], "creativeId": "-1458703000", "creativeSequence": "", "duration": "PT30.03S", "durationInSeconds": 30.03, "extensions": [ { "content": "-1458703000", "type": "springserve" } ], "mediaFiles": { "mediaFilesList": [], "mezzanine": "" }, "skipOffset": null, "startTime": "PT12M22.642S", "startTimeInSeconds": 742.642, "trackingEvents": [ { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.q4.txt", "https://vid-io-iad.springserve.com/vd/i?event=js_complete&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=3892224939752&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1458703000&_pi=2&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316429", "eventType": "complete", "startTime": "PT12M52.672S", "startTimeInSeconds": 772.672 }, { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.q0.txt", "https://vid-io-iad.springserve.com/vd/i?event=js_start&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=3892224939752&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1458703000&_pi=2&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316425", "eventType": "start", "startTime": "PT12M22.642S", "startTimeInSeconds": 742.642 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=vast_impression&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&d=&size=1920x1080&id=629422&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&timestamp=1621914181689&aid=941&hc=-1458703000&_apssf=30&_pi=2&_j=", "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.impression.txt", "" ], "duration": "PT30.03S", "durationInSeconds": 30.03, "eventId": "316425", "eventType": "impression", "startTime": "PT12M22.642S", "startTimeInSeconds": 742.642 }, { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.q2.txt", "https://vid-io-iad.springserve.com/vd/i?event=js_midpoint&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=3892224939752&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1458703000&_pi=2&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316427", "eventType": "midpoint", "startTime": "PT12M37.657S", "startTimeInSeconds": 757.657 }, { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.q3.txt", "https://vid-io-iad.springserve.com/vd/i?event=js_third_quartile&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=3892224939752&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1458703000&_pi=2&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316428", "eventType": "thirdQuartile", "startTime": "PT12M45.1645S", "startTimeInSeconds": 765.164 }, { "beaconUrls": [ "https://vid-io-iad.springserve.com/vd/i?event=js_click&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=62035751807&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1458703000&_pi=2&_j=" ], "duration": "PT30.03S", "durationInSeconds": 30.03, "eventId": "316425", "eventType": "clickThrough", "startTime": "PT12M22.642S", "startTimeInSeconds": 742.642 }, { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.q1.txt", "https://vid-io-iad.springserve.com/vd/i?event=js_first_quartile&dtid=604738&a_cc=rs.2590-s.629422-ap.8094-d.604738&cb=3892224939752&id=629422&aid=1&d=&w=1920&h=1080&cc=US&uuid=04a08d7f-e5de-48be-af68-c256d4a14c7a&pp=&app_name=test_videoservice_c3&app_bundle=test_videoservice_c3&ssid=04a08d7f-e5de-48be-af68-c256d4a14c7a.1621914181689&uuid=ccd6c7ba-e7e0-4647-98be-b9e9febf5821&_rcc=en.20954_bs.21066&ol=0&hc=-1458703000&_pi=2&_j=" ], "duration": "PT0S", "durationInSeconds": 0.0, "eventId": "316426", "eventType": "firstQuartile", "startTime": "PT12M30.1495S", "startTimeInSeconds": 750.149 }, { "beaconUrls": [ "https://s3.amazonaws.com/hls-test-dev/content/30_sec/hls/tracking.error.txt" ], "duration": "PT30.03S", "durationInSeconds": 30.03, "eventId": "316425", "eventType": "error", "startTime": "PT12M22.642S", "startTimeInSeconds": 742.642 } ], "vastAdId": "604738-4" } ], "availId": "316412", "duration": "PT1M45.672S", "durationInSeconds": 105.672, "meta": null, "nonLinearAdsList": [], "startTime": "PT11M7S", "startTimeInSeconds": 667.0 } ], "nextToken": "UFQxMk01Mi42NzJTXzIwMjEtMDUtMjVUMDM6NDU6MTEuMjc3Wl8x", "nonLinearAvails": [] }
Previous
Next

Was this article helpful?

27 out of 39 found this helpful