Skip to content

Templates

Get all Templates

GET /api/templates

Returns all the Templates that are currently available in your Erizos Studio environment.

Response

The response is an array of Templates

Get Template by ID

GET /api/templates/[ID]

Returns the template that corresponds to the template ID.

Request

Parameter Type Description
ID Uuid id of the Template

Response

Page Object

Update Template

PUT /api/templates

Update a template (on all shows)

Request

Parameter Type Description

Request Body

{
    "system": "SINGULAR",
    "mode": "TEMPLATE"
    ....
}

Delete Template by ID

DELETE /api/templates/[ID]

Deletes the template that corresponds to the template ID.

Request

Parameter Type Description
ID Uuid id of the Template

Get Template Thumbnail

GET /api/templates/[ID]/thumbnail

Returns the template that corresponds to the template ID.

Request

Parameter Type Description
ID Uuid id of the Template

Response

The thumbnail image (binary)

Get All Templates of Show

See the Show API request Get Templates of Show