Delete a piece of media
The media key
DELETE //media/storage/file/{key} HTTP/1.1 Host: api.ecosuite.io Accept: */*
successful operation
{ "deleted": "text" }
Get a piece of media
GET //media/storage/file/{key} HTTP/1.1 Host: api.ecosuite.io Accept: */*
{ "media": { "createdDateTime": "text", "lastUpdatedDateTime": "text", "lastUpdateAuthor": "text", "tags": [ "text" ], "contentType": "text", "contentEncoding": "text", "data": "text", "contentLength": 1, "tagIDs": [ "text" ], "code": "text", "name": "text", "description": "text", "id": "text", "key": "text", "author": "text" } }
Update a piece of media
A generic piece of media.
PUT //media/storage/file/{key} HTTP/1.1 Host: api.ecosuite.io Content-Type: application/json Accept: */* Content-Length: 52 { "name": "text", "description": "text", "tags": [ "text" ] }