Media Endlink
Endlinks for media allow users to search for specific media using either tags or media IDs, but not both simultaneously.
In a multitenant environment, an external ID is required; omitting it will result in a bad request.
In a non-multitenant environment, the external ID is not needed.
After processing the request, the result is a hash that can be used to retrieve the search results later.
Base Url -
Release candidate (RC)
Media Ids search for multitenant / non multitenant:
Endpoint - /api/endlink/media
Header -
Authorization: Bearer {{YOUR-ACCESS-TOKEN}}
Content-Type: application/json
Body -
{
"mediaIds": [
{{MEDIA-ID}},
...
],
"tags": null,
"playerTags": {
{{PLAYER-TAG-KEY}}: {{PLAYER-TAG-VALUE}}
},
"timestamp": {{TIMESTAMP}},
"disableMediaAnalyticsWebhook": {{ANALYTICS-WEBHOOK-DISABLE}} //optional
}Example Curl Request -
Tags search for multitenant / non multitenant:
Endpoint - /api/endlink/media
Header -
Authorization: Bearer {{YOUR-ACCESS-TOKEN}}
Content-Type: application/json
Body -
Example Curl Request-
Response -
Last updated