diff --git a/dspace_statistics_api/docs/index.html b/dspace_statistics_api/docs/index.html index 710604c..ac190a7 100644 --- a/dspace_statistics_api/docs/index.html +++ b/dspace_statistics_api/docs/index.html @@ -10,11 +10,32 @@

The item id is the internal uuid for an item. You can get these from the standard DSpace REST API.

+
+

¹ We are querying the Solr statistics core, which technically only knows about items that have either views or downloads. If an item is not present here you can assume it has zero views and zero downloads, but not necessarily that it does not exist in the repository. +

² POST requests to /items should be in JSON format with the following parameters: +

+				
+{
+	"limit": 100, // optional, integer between 0 and 100, default 100
+	"page": 0, // optional, integer greater than 0, default 0
+	"dateFrom": "2020-01-01T00:00:00Z", // optional, default *
+	"dateTo": "2020-09-09T00:00:00Z", // optional, default *
+	"items": [
+		"f44cf173-2344-4eb2-8f00-ee55df32c76f",
+		"2324aa41-e9de-4a2b-bc36-16241464683e",
+		"8542f9da-9ce1-4614-abf4-f2e3fdb4b305",
+		"0fe573e7-042a-4240-a4d9-753b61233908"
+	]
+}
+				
+			
+