group.Rd
Operate with group
group(
group_id,
action = c("fetch", "update", "fetch_members"),
...,
api_path = get_hs_host(),
api_key = NULL
)
Group ID
Action to process, Default: `fetch`
Parameters for update group information, more details can be found in hypothesis documentation.
The hypothesis API path, can be specify by `hypothesis.api.api_path` option or `HYPOTHESIS_API_PATH` environment variable. Default: `https://hypothes.is/api/`.
User api key, generated on the platform.
if (FALSE) {
group("group_id")
group("group_id", action = "update", name = "updated text", description = "desc")
group("group_id", action = "fetch_members")
}