Table of Contents

AddPlayerSpeaker
Adds a speaker to the webcast administration. This can be used to display a speaker image or speaker information in the webcast player. The speaker image is optional and be a .png, .gif or .jpg. The Image file can also be passed as a URL using the parameter “ImageFile” (i.e. “ImageFile”:”https://www.domain.com/SomeImage.jpg”, in this case the webcast player will always URL to load the player image.

Example
Call=AddPlayerSpeaker

Parameters={“AccessID”:”1234abc”,”AccessKey”:”abcde”,”WebcastID”:4660,”Name”:”The Speaker Name”,”Title”:”The Speaker Title”,”Description”:”The Speaker Description”}

https://www.domain.com/templates2.0/API/0.2/?Parameters={“AccessID”:”1234abc”,”AccessKey”:”abcde”,”WebcastID”:”4660″,”Name”:”The Speaker Name”,”Title”:”The Speaker Title”,”Description”:”The Speaker Description”}&Call=AddPlayerSpeaker

An optional image file can be posted with the API call, it must be form-data encoded with the name “ImageFile”.

The call must be submitted by POST if an image file is provided.

Example Return
{

“datetime”: “12/Feb/2021 04:51:49 AM”,
“UploadResponse”: {
“StoreId”: “SpeakersPlayerDisplayStore”,
“Field”: “image”,
“ItemID”: “3499”,
“WebcastID”: 4660,
“NewRow”: true,
“file”: “589_1new_york_life_headshot.jpg”,
“success”: true
},
“ID”: “3499”,
“Name”: “The Speaker Name”,
“Title”: “The Speaker Title”,
“Description”: “The Speaker Description”,
“WebcastID”: 4660
}

Quote Request