List indexed eprints with pagination
Parameters
Output
Encoding
application/jsonitems
array
Required
Eprint records
total
integer
Required
Total matching eprints
Errors
AuthenticationRequired
AdminRequired
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"items",
"total"
],
"properties": {
"items": {
"type": "array",
"items": {
"ref": "#eprintSummary",
"type": "ref"
},
"description": "Eprint records"
},
"total": {
"type": "integer",
"description": "Total matching eprints"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results"
},
"offset": {
"type": "integer",
"default": 0,
"minimum": 0,
"description": "Number of results to skip"
}
}
},
"description": "List indexed eprints with pagination"
}