List all changelog entries for an eprint
Parameters
Output
Encoding
application/jsonchangelogs
array
Required
List of changelog entries, newest first
cursor
string
Optional
Pagination cursor for next page
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"changelogs"
],
"properties": {
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"changelogs": {
"type": "array",
"items": {
"ref": "#changelogView",
"type": "ref"
},
"description": "List of changelog entries, newest first"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"eprintUri"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of changelogs to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"eprintUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the eprint to list changelogs for"
}
}
},
"description": "List all changelog entries for an eprint"
}