POST /api/v1/collections/entry -> controllers.CollectionsController.addResourceToCollection(collectionid: String) -> Ok(Json.obj("message" -> "owcResource added to owcContext", "document" -> theDoc.toJson, "entry" -> owcResource.toJson))
add a resource AS IS entry to a collection, the user must own the owccontext collection and the resource id must not exist
GET -> /api/v1/collections/requestnew -> controllers.CollectionsController.createNewCustomCollection
GET /api/v1/collections/delete -> controllers.CollectionsController.deleteCollection(id: String) -> Ok(Json.obj("message" -> "owcContext deleted", "document" -> owcContextId))
delete specific collection that you have access to, server will check that and either allow or fail the operation
GET /api/v1/collections/entry/delete -> controllers.CollectionsController.deleteResourceFromCollection(collectionid: String, resourceid: String) -> Ok(Json.obj("message" -> "owcResource removed from owcContext", "document" -> theDoc.toJson))
delete a resource entry from a collection
get specific collection (that you have access to, server will filter reliably)
sort of trying to get reliable UUIDs
get all uploaded files in user's default collection getPersonalFilesFromDefaultCollection returns owc Data Links
In case call failed, handle error
POST /api/v1/collections -> controllers.CollectionsController.insertCollection -> Ok(Json.obj("message" -> "owcContext inserted", "document" -> theDoc.toJson))
insert a collection, the owcContext.id must not exist on the server or it will fail
POST /api/v1/collections/copy -> controllers.CollectionsController.insertCopyOfCollection -> Ok(Json.obj("message" -> "owcContext inserted", "document" -> theDoc.toJson))
insert a collection, the owcContext.id must not exist on the server or it will fail
GET /api/v1/collections/view-query -> controllers.CollectionsController.queryCollectionsForViewing(id: Option[String], keywords: Seq[String] ?= Seq())
POST /api/v1/collections/entry/replace -> controllers.CollectionsController.replaceResourceInCollection(collectionid: String) -> Ok(Json.obj("message" -> "owcResource replaced in owcContext", "document" -> theDoc.toJson, "entry" -> owcResource.toJson))
update a resource entry in a colection, the collection and the resource must exist in that constallation with the user owning them
POST /api/v1/collections/update -> controllers.CollectionsController.updateCollection -> Ok(Json.obj("message" -> "owcContext updated", "document" -> theDoc.toJson))
update a collection, the owcContext.id must already exist on the server and user must own or it will fail
Generated using TypeDoc
POST /api/v1/collections/entry -> controllers.CollectionsController.addResourceToCollection(collectionid: String) -> Ok(Json.obj("message" -> "owcResource added to owcContext", "document" -> theDoc.toJson, "entry" -> owcResource.toJson))
add a resource entry to a collection, the user must own the owccontext collection and the resource will be refreshed with a unique copy of server-side (not conflicts should happen on multiple re-use)