Storage
Get all Assets in Storage
GET /api/storage
Returns all the assets in the Storage
Response
The response is an array of Assets
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
Delete the Asset in Storage
DELETE /api/storage/[id]
Delete the Asset in the Storage
| Parameter | Value | Description |
|---|---|---|
| name | id/key | The id/key of the of the Asset to be deleted |
Response
The response is an array of Assets
{}
Get all Global Variables
GET /api/globalvariables
Returns all the Global Variables stored in Erizos Studio
Response
The response is an array of Global Variables
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
Get the Global Variable by ID
GET /api/globalvariables/[id]
Returns the value of the Global Variables stored in Erizos Studio
| Parameter | Value | Description |
|---|---|---|
| id | id/key | The id/key of the Global variable |
Response
The response is Global Variables object
1 2 3 4 5 6 7 8 9 | |
Get a Key list of Global variable
GET /api/globalvariables/keys/list
Returns all the keys of Global Variables stored
Response
The response is list of global variable keys
1 2 3 4 | |
Checks whether the Global Variable Key exist
GET /api/globalvariables/keys/[name]/exists
Returns all the keys of Global Variables stored
| Parameter | Value | Description |
|---|---|---|
| name | id/key | The id/key of the Global variable |
Response
The response is whether the Key exist
1 2 3 | |