Approve a pending co-author request. Only the eprint owner can approve.
Parameters
Output
Encoding
application/jsonsuccess
boolean
Required
Whether the approval was successful
Errors
AuthenticationRequired
Authentication is required to approve co-author requests Forbidden
Only the eprint owner can approve co-author requests RequestNotFound
The specified co-author request does not exist Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"errors": [
{
"name": "AuthenticationRequired",
"description": "Authentication is required to approve co-author requests"
},
{
"name": "Forbidden",
"description": "Only the eprint owner can approve co-author requests"
},
{
"name": "RequestNotFound",
"description": "The specified co-author request does not exist"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean",
"description": "Whether the approval was successful"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"requestId"
],
"properties": {
"requestId": {
"type": "integer",
"minimum": 1,
"description": "ID of the co-author request to approve"
}
}
},
"description": "Approve a pending co-author request. Only the eprint owner can approve."
}