Inhalte
GET /api/analytics/content
Rangierte Liste von Inhalten nach Views im Workspace für einen Content-Typ.
Erfordert analytics.read. Siehe Übersicht für gemeinsame Parameter und Kategorie-Scope.
Parameter
| Parameter | Erforderlich | Beschreibung |
|---|---|---|
contentType | Nein | vod (Standard) oder live |
from, to | Nein | ISO-8601-Bereich |
minimumWatchSeconds | Nein | Standard 3 |
limit | Nein | Standard 100 |
Anfrage
curl -X GET "https://app.ignitevideo.cloud/api/analytics/content?contentType=vod&limit=50" \
-H "Authorization: Bearer YOUR_API_KEY"Antwort
{
"from": string,
"to": string,
"minimumWatchSeconds": number,
"content": [
{
"contentId": string,
"views": number,
"watchSeconds": number,
"completions": number,
"sessions": number
},
[...]
]
}