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
1 2 3 4 5 |
|
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/[Template ID]/thumbnail
Returns the thumbnail that corresponds to the template ID.
Request
Parameter | Type | Description |
---|---|---|
ID | Uuid | id of the Template |
Response
The thumbnail image (binary)
Get Layer Thumbnail
GET /api/templates/[Layer ID]/thumbnail
Returns the thumbnail that corresponds to the layer ID of the template. Layers are sub templates used in render engines such as Unreal Engine and Singular.live
Request
Parameter | Type | Description |
---|---|---|
Layer ID | Uuid | ID of the Layer |
Response
The thumbnail image (binary)
Get All Templates of Show
See the Show API request Get Templates of Show