Table of Contents

AddPresentation
Adds a presentation file to the webcast administration. The file can be a zip file containing slide images, a PDF or a Powerpoint file. PDF and Powerpoint files will be require further processing after the file is uploaded and will not be available immediately in the webcast administration. “DeckEnabled” controls whether or not a user can click a slide to send cuepoints to change slide in the player.

Example
Call=AddPresentation

Parameters={“AccessID”:”1234abc”,”AccessKey”:”abcde”,”WebcastID”:4660,”Label”:”New Presentation”}

https://www.domain.com/templates2.0/API/0.2/?Parameters={“AccessID”:”1234abc”,”AccessKey”:”abcde”,”WebcastID”:”4660″,”Label”:”New Presentation”,”DeckEnabled”:true}&Call=AddPresentation

A file must be posted with the API call, it must be form-data encoded with the name “PresentationFile”.

The call must be submitted by POST due to the required file upload. The file needs to be further processed and will not be visible immediately in admin interface.

Example Return
{

“datetime”: “17/Nov/2020 09:53:34 AM”,
“UploadResponse”: {
“conversion_job_id”: 16358989,
“conversion_upload”: true,
“status”: “initialising”,
“StoreId”: “SlideDecksStore”,
“success”: true,
“FileName”: “MRWG November 30 – Final.pdf”,
“TempFileName”: “/tmp/php3BdB65”
},
“ID”: “18353”,
“Label”: “New Presentation”,
“DeckEnabled”:1,
“WebcastID”: 4660
}

 

Quote Request