hs_update {hypothesisr} | R Documentation |
Update annotations
Description
Update annotations
Usage
hs_update(token, id, uri = NULL, user = NULL, permissions = NULL,
document = NULL, target = NULL, tags = NULL, text = NULL,
custom = NULL)
Arguments
token |
Character. Your account token, which you can generate at https://hypothes.is/register. |
id |
Character. A hypothes.is annotation id. |
uri |
Character. The URI to be annotated. |
user |
Character. Your user account, normally in the format |
permissions |
A named list with read, update, delete, and admin permissions. Defaults to setting global read permissions ( |
document |
A list describing the document. CURRENTLY IGNORED. |
target |
A list describing the highlight position of the annotation. CURRENTLY IGNORED |
tags |
Character. (optional) Tags to apply to the annotation. |
text |
Character. Text to put in the body of the annotation. This will be coerced into a character vector of length 1 using paste. |
custom |
Add arbitrary fields to the JSON object submitted to hypothes.is by means of a named list. |
Value
TRUE on successful update.
Source
https://h.readthedocs.io/en/latest/api/#update
Examples
## Not run:
hs_update(user_token, "lDf9rC3EEea6ck-G5kLdXA", text = "Now even more annotate-y!")
## End(Not run)