Get pending co-author requests for the authenticated user's eprints. Returns requests where the user is the eprint owner.
Parameters
Output
application/jsoncursor
string
Optional
Cursor for next page of results
requests
array
Required
List of co-author requests
Errors
AuthenticationRequired
Authentication is required to get co-author requests 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",
"description": "Authentication is required to get co-author requests"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"requests"
],
"properties": {
"cursor": {
"type": "string",
"description": "Cursor for next page of results"
},
"requests": {
"type": "array",
"items": {
"ref": "#coauthorRequest",
"type": "ref"
},
"description": "List of co-author requests"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
}
}
},
"description": "Get pending co-author requests for the authenticated user's eprints. Returns requests where the user is the eprint owner."
}