Storage REST Endpoints

Storage
The Storage API lets you store objects in the cloud. An object can be text, JSON, or a binary object such as an image. The objects are grouped by collection.
Remove an Object by ID
Method: delete
Path: /mobile/platform/storage/collections/{collection}/objects/{object}
Return a List of Collections
Method: get
Path: /mobile/platform/storage/collections
Return a List of Objects
Method: get
Path: /mobile/platform/storage/collections/{collection}/objects
Return an Object
Method: get
Path: /mobile/platform/storage/collections/{collection}/objects/{object}
Return Collection Metadata
Method: get
Path: /mobile/platform/storage/collections/{collection}
Return Collection Metadata
Method: head
Path: /mobile/platform/storage/collections/{collection}
Return Object Metadata
Method: head
Path: /mobile/platform/storage/collections/{collection}/objects/{object}
Store an Object
Method: post
Path: /mobile/platform/storage/collections/{collection}/objects
Store an Object by ID
Method: put
Path: /mobile/platform/storage/collections/{collection}/objects/{object}