Skip to content

Latest commit

 

History

History
72 lines (40 loc) · 2.02 KB

BlobsApi.md

File metadata and controls

72 lines (40 loc) · 2.02 KB

\BlobsApi

All URIs are relative to https://api.lab5e.com

Method HTTP request Description
delete_blob DELETE /span/collections/{collectionId}/blobs/{blobId} Remove a blob stored on a collection
list_blobs GET /span/collections/{collectionId}/blobs List the blobs for a collection

delete_blob

serde_json::Value delete_blob(collection_id, blob_id) Remove a blob stored on a collection

Remove a blob stored on the collection.

Parameters

Name Type Description Required Notes
collection_id String [required]
blob_id String [required]

Return type

serde_json::Value

Authorization

APIToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

list_blobs

crate::models::ListBlobResponse list_blobs(collection_id, limit) List the blobs for a collection

Retrieve a list of all the blobs stored on this collection. Blobs are uploaded by the devices through one of the blob endpoints.

Parameters

Name Type Description Required Notes
collection_id String [required]
limit Option<i32>

Return type

crate::models::ListBlobResponse

Authorization

APIToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]