Storiq One API
v1.0
API for Storiq One
|
To get archive file by its id, use GET method
path : /storiqone-backend/api/v1/archivefile/
id | : archive file id |
To get archive files ids list, use GET method : Specify the archive id that you want to list
path : /storiqone-backend/api/v1/archivefile/
Optional parameters
Name | Type | Description | Constraint |
---|---|---|---|
order_by | enum | order by column | value in : 'id', 'name', 'size' |
order_asc | boolean | TRUE will perform an ascending order and FALSE will perform an descending order. order_asc is ignored if order_by is missing. | |
limit | integer | specifies the maximum number of rows to return. | limit > 0 |
offset | integer | specifies the number of rows to skip before starting to return rows. | offset >= 0 |
metaarchivefile ArchiveFile Metadata
To get metadatas from an archive file, use GET method : with a reference to an archive file id
path : /storiqone-backend/api/v1/archivefile/metadata
To get a metadata key of an archive file, use GET method : with a reference to an archive file id and a reference to a key
path : /storiqone-backend/api/v1/archivefile/metadata
To update metadatas of an archive file, use PUT method : with a reference to an archive file id and a reference to a key and a reference to a value
path : /storiqone-backend/api/v1/archivefile/metadata/
To create metadatas of an archive file, use POST method : with a reference to an archive file id and a reference to a key and a reference to a value
path : /storiqone-backend/api/v1/archivefile/metadata/