Edit in GitHubLog an issue

Ad endpoints

These endpoints allow you to track media ads that play before or during content playback. They consist of two types of advertising events:

  • Ad break: A sequence of ads. A single ad break consists of one or more ads.
  • Ad: An individual ad. Multiple ads can play during a single ad break.

Usage of these endpoints require an active session. Make sure that you call the sessionStart endpoint first to obtain a valid session ID.

adBreakStart

The adBreakStart endpoint indicates the start of a sequence of ads. Adobe recommends setting both ad break and ad events, even when a single advertisement is shown. If an ad break triggers but an ad does not, this scenario can point to possible issues loading advertisements. See Media Edge API implementation examples for more examples calling this endpoint.

POST https://edge.adobedc.net/ee/va/v1/adBreakStart?configId={datastreamID}

Copied to your clipboard
curl -X POST "https://edge.adobedc.net/ee/va/v1/adBreakStart?configId={datastreamID}" \
--header 'Content-Type: application/json' \
--data '{
"events": [
{
"xdm": {
"eventType": "media.adBreakStart",
"mediaCollection": {
"sessionID": "ffab5[...]45ec3",
"playhead": 0,
"advertisingPodDetails": {
"index": 0,
"offset": 0
}
},
"timestamp": "YYYY-08-20T22:41:40+00:00"
}
}
]
}'

If successfully processed, the API returns 204 No Content.

This endpoint requires the following payload properties within the xdm object:

XDM propertyDescription
eventType
The category of the event. Always set this property to media.adBreakStart for this endpoint.
mediaCollection
An object containing media collection details. See the table below for details.
timestamp
The timestamp of the event.

The mediaCollection object requires several properties. See Media Collection Details data type in the Experience Data Model guide for more information.

Media collection propertyDescription
sessionID
The session ID obtained from the sessionStart endpoint.
playhead
The current playback position within the media content.
Live content: The current second of the day, between 0 and 86400.
Recorded content: The current second of the content's duration, between 0 and the total content length.
advertisingPodDetails
An object containing details on the ad pod. See Advertising Pod Details Collection for more information. The index and offset properties are required.

adBreakComplete

The adBreakComplete endpoint indicates the completion of a sequence of ads. Call this endpoint when a visitor finishes all ads in a pod. See Media Edge API implementation examples for more examples calling this endpoint.

POST https://edge.adobedc.net/ee/va/v1/adBreakComplete?configId={datastreamID}

Copied to your clipboard
curl -X POST "https://edge.adobedc.net/ee/va/v1/adBreakComplete?configId={datastreamID}" \
--header 'Content-Type: application/json' \
--data '{
"events": [
{
"xdm": {
"eventType": "media.adBreakComplete",
"mediaCollection": {
"sessionID": "ffab5[...]45ec3",
"playhead": 0
},
"timestamp": "YYYY-08-20T22:41:40+00:00"
}
}
]
}'

If successfully processed, the API returns 204 No Content.

This endpoint requires the following payload properties within the xdm object:

XDM propertyDescription
eventType
The category of the event. Always set this property to media.adBreakComplete for this endpoint.
mediaCollection
An object containing media collection details. See Media Collection Details data type in the Experience Data Model guide for more information. The sessionID and playhead properties are required.
timestamp
The timestamp of the event.

The advertisingPodDetails object is not allowed when using this endpoint.

adStart

The adStart endpoint indicates the start of an individual advertisement. Call this endpoint once an ad successfully loads and starts playing. See Media Edge API implementation examples for more examples calling this endpoint.

POST https://edge.adobedc.net/ee/va/v1/adStart?configId={datastreamID}

Copied to your clipboard
curl -X POST "https://edge.adobedc.net/ee/va/v1/adBreakComplete?configId={datastreamID}" \
--header 'Content-Type: application/json' \
--data '{
"events": [
{
"xdm": {
"eventType": "media.adStart",
"mediaCollection": {
"sessionID": "ffab5[...]45ec3",
"playhead": 0,
"advertisingDetails": {
"name": "Example ad",
"length": 1,
"playerName": "Ad player",
"podPosition": 0
}
},
"timestamp": "YYYY-08-20T22:41:40+00:00"
}
}
]
}'

If successfully processed, the API returns 204 No Content.

This endpoint requires the following payload properties within the xdm object:

XDM propertyDescription
eventType
The category of the event. Always set this property to media.adStart for this endpoint.
mediaCollection
An object containing media collection details. See the table below for details.
timestamp
The timestamp of the event.

The mediaCollection object requires several properties. See Media Collection Details data type in the Experience Data Model guide for more information.

Media collection propertyDescription
sessionID
The session ID obtained from the sessionStart endpoint.
playhead
The current playback position within the media content.
Live content: The current second of the day, between 0 and 86400.
Recorded content: The current second of the content's duration, between 0 and the total content length.
advertisingDetails
An object containing details on the ad. See Advertising Details Collection for more information. The name, length, playerName, and podPosition properties are required.

adComplete

The adComplete endpoint indicates the completion of an individual advertisement. Call this endpoint when an ad finishes. See Media Edge API implementation examples for more examples calling this endpoint.

POST https://edge.adobedc.net/ee/va/v1/adComplete?configId={datastreamID}

Copied to your clipboard
curl -X POST "https://edge.adobedc.net/ee/va/v1/adComplete?configId={datastreamID}" \
--header 'Content-Type: application/json' \
--data '{
"events": [
{
"xdm": {
"eventType": "media.adComplete",
"mediaCollection": {
"sessionID": "ffab5[...]45ec3",
"playhead": 0
},
"timestamp": "YYYY-08-20T22:41:40+00:00"
}
}
]
}'

If successfully processed, the API returns 204 No Content.

This endpoint requires the following payload properties within the xdm object:

XDM propertyDescription
eventType
The category of the event. Always set this property to media.adComplete for this endpoint.
mediaCollection
An object containing media collection details. See Media Collection Details data type in the Experience Data Model guide for more information. The sessionID and playhead properties are required.
timestamp
The timestamp of the event.

The advertisingDetails object is not allowed when using this endpoint.

adSkip

The adSkip endpoint indicates that the user skipped an advertisement. Call this endpoint when a visitor selects the 'Skip ad' button on the media player.

POST https://edge.adobedc.net/ee/va/v1/adSkip?configId={datastreamID}

Copied to your clipboard
curl -X POST "https://edge.adobedc.net/ee/va/v1/adSkip?configId={datastreamID}" \
--header 'Content-Type: application/json' \
--data '{
"events": [
{
"xdm": {
"eventType": "media.adSkip",
"mediaCollection": {
"sessionID": "ffab5[...]45ec3",
"playhead": 0
},
"timestamp": "YYYY-08-20T22:41:40+00:00"
}
}
]
}'

If successfully processed, the API returns 204 No Content.

This endpoint requires the following payload properties within the xdm object:

XDM propertyDescription
eventType
The category of the event. Always set this property to media.adSkip for this endpoint.
mediaCollection
An object containing media collection details. See Media Collection Details data type in the Experience Data Model guide for more information. The sessionID and playhead properties are required.
timestamp
The timestamp of the event.
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.