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: deletePath:
/mobile/platform/storage/collections/{collection}/objects/{object} - Return a List of Collections
- Method: getPath:
/mobile/platform/storage/collections - Return a List of Objects
- Method: getPath:
/mobile/platform/storage/collections/{collection}/objects - Return an Object
- Method: getPath:
/mobile/platform/storage/collections/{collection}/objects/{object} - Return Collection Metadata
- Method: getPath:
/mobile/platform/storage/collections/{collection} - Return Collection Metadata
- Method: headPath:
/mobile/platform/storage/collections/{collection} - Return Object Metadata
- Method: headPath:
/mobile/platform/storage/collections/{collection}/objects/{object} - Store an Object
- Method: postPath:
/mobile/platform/storage/collections/{collection}/objects - Store an Object by ID
- Method: putPath:
/mobile/platform/storage/collections/{collection}/objects/{object}