You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Below are a list of SAS endpoints but note they assume SAS is running as a root application. For the tomcat docker deployment you would need to add `/sas/` to the start of the URL. For example the create annotation endpoint would be:
4
+
5
+
```
6
+
/sas/annotation/create
7
+
```
8
+
9
+
# Search API endpoint (GET)
10
+
The endpoint for the IIIF Search implementation:
11
+
12
+
```
13
+
/search-api/_manifest_short_id/search
14
+
```
15
+
16
+
where `_manifest_short_id` is a URL safe nickname for the manifest. This is currently built in the following method:
Updates an existing annotation with the content of the posted annotation:
39
+
40
+
```
41
+
/annotation/update
42
+
```
43
+
44
+
The posted annotation should have an `@id` which exists in the store
45
+
46
+
# Delete an annotation (DELETE)
47
+
48
+
```
49
+
/annotation/destroy?uri=
50
+
```
51
+
52
+
The `uri` parameter is the ID of the annotation to delete.
53
+
54
+
# Import a AnnotationList into the Annotation store (POST)
55
+
56
+
Useful to import an existing annotation list for editing. See [Populating Annotations](PopulatingAnnotations.md) for details on how to use this function. A AnnotationList is posted to the annotation store.
0 commit comments