List eprints by author DID
Parameters
Output
application/jsoncursor
string
Optional
No description available.
eprints
array
Required
No description available.
total
integer
Optional
No description available.
Errors
NotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"eprints"
],
"properties": {
"total": {
"type": "integer"
},
"cursor": {
"type": "string"
},
"eprints": {
"type": "array",
"items": {
"ref": "#eprintSummary",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "Author DID"
},
"limit": {
"type": "integer",
"default": 25,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"sortBy": {
"type": "string",
"default": "indexedAt",
"knownValues": [
"indexedAt",
"publishedAt",
"updatedAt"
]
},
"sortOrder": {
"type": "string",
"default": "desc",
"knownValues": [
"asc",
"desc"
]
}
}
},
"description": "List eprints by author DID"
}