This example will use the News template found in the Public Templates folder:

Click the template, and add it to your media:

Now send this media to your active playlist:

You’ll need to find your group id, API key, media id, and player id.
Click here at the top right of the page:

For example, QuickCast Media’s group section looks like this.
The group id is 1 and the push data key can be obtained by pressing “Get New Key”.

You’ll need the media id of the template. Check the id on the media page by pressing the edit button:

Next, you’ll want to find out the player id that you’ll be targeting.
Go to the endpoints page and the id is displayed at the top of the selected endpoint:

You’ll need to set up a program to push your “News” to the screen.
A developer will be needed to pull your data from its source, and push this data into the system on a timed interval.
You should only be pushing a minimum of every 5 minutes.
A POST message to this address will allow you to send data down to your player:
https://push.pixyl.ca/api/push
The body of the message will look like this (change parameterData to suit your needs):
{
"groupId": 1,
"apiKey": "<api-key>",
"mediaId": 1152,
"playerIds": [ 1 ],
"parameterHeader": {
"category": "",
"categoryCode": "",
"concatCharacter": "|",
"mergeCount": 5
},
"parameterData": [
{
"group": "590c75e7-b465-42fb-8824-00251d14d467",
"key": "categories",
"value": "Top Stories News"
},
{
"group": "590c75e7-b465-42fb-8824-00251d14d467",
"key": "headlines",
"value": "Sample Headline 1"
},
{
"group": "590c75e7-b465-42fb-8824-00251d14d467",
"key": "articles",
"value": "Sample Article 1"
},
{
"group": "4a541abb-3317-48d6-a672-b61b2f9b44fa",
"key": "categories",
"value": "Top Stories News"
},
{
"group": "4a541abb-3317-48d6-a672-b61b2f9b44fa",
"key": "headlines",
"value": "Sample Headline 2"
},
{
"group": "4a541abb-3317-48d6-a672-b61b2f9b44fa",
"key": "articles",
"value": "Sample Article 2"
},
{
"group": "744562ab-05d1-402a-830c-a2a5eee7b812",
"key": "categories",
"value": "Top Stories News"
},
{
"group": "744562ab-05d1-402a-830c-a2a5eee7b812",
"key": "headlines",
"value": "Sample Headline 3"
},
{
"group": "744562ab-05d1-402a-830c-a2a5eee7b812",
"key": "articles",
"value": "Sample Article 3"
},
{
"group": "67120576-E13C-44C5-B758-C8F0136E38DE",
"key": "categories",
"value": "Top Stories News"
},
{
"group": "67120576-E13C-44C5-B758-C8F0136E38DE",
"key": "headlines",
"value": "Sample Headline 4"
},
{
"group": "67120576-E13C-44C5-B758-C8F0136E38DE",
"key": "articles",
"value": "Sample Article 4"
},
{
"group": "A72A45FE-A3FF-4047-8EFD-B381305934BD",
"key": "categories",
"value": "Top Stories News"
},
{
"group": "A72A45FE-A3FF-4047-8EFD-B381305934BD",
"key": "headlines",
"value": "Sample Headline 5"
},
{
"group": "A72A45FE-A3FF-4047-8EFD-B381305934BD",
"key": "articles",
"value": "Sample Article 5"
}
]
}
The response code should come back as:
{"success":true,"errors":[],"messages":[],"id":null}
If it is deemed “success” then the data will flow out to the player screen within 5 minutes.