Release notes 2025
2025r3
Transmission title in GET /breakSchedule call of commercial API
The commercial API contains a GET /breakSchedule call, which is used by the external system after publishing an interstitial schedule for interstitial integration. The call retrieves all transmissions and time allocations of the type specified in the interstitial integration definition for a channel on a specific date.
Previously, the transmissions array contained the productTitle and the seriesTitle, but not the title of the transmission itself, which can be different.
From this version, the txTitle attribute has been added to the response body of the GET /breakSchedule call. It maps to the head title of the transmission.
An example of the response:
{
"channelId": "MGX",
"startDate": "2025-11-01",
"scheduleVersion": "Active",
"dayStatus": "closed",
"definitionId": "Comm",
"transmissions": [
{
"transmissionId": "9501555641",
"startTime": "09:33:00",
"startTimeUTC": "08:33:00",
"announcedStartTime": "09:25",
"lockedStartTime": false,
"duration": "01:28:30",
"productId": "9501369293",
"parentalRating": null,
"txTitle": "FFG 2024 - Presence",
"productType": "program",
"productCode": null,
"productTitle": "Presence",
"seriesTitle": null,
...
"timeAllocations": [
{
"breakId": "000025",
"externalBreakId": null,
"startTime": "10:03:30",
"duration": "00:01:00",
"type": "commercial",
"position": "Middle",
"startTimeUTC": "09:03:30",
"readOnly": false,
"title": "Presence - - Commercial",
"sequenceNumber": 4,
"regional": false,
"masterBreakId": null,
"predictedRatings": []
}
]
}
]
}