Delete an eprint submission from the user's PDS
Input
Encoding
application/jsonuri
stringat-uri
Required
AT-URI of the eprint to delete
Output
Encoding
application/jsonsuccess
boolean
Required
Whether the deletion was successful
Errors
NotFound
Eprint not found Unauthorized
User is not authorized to delete this eprint Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the eprint to delete"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotFound",
"description": "Eprint not found"
},
{
"name": "Unauthorized",
"description": "User is not authorized to delete this eprint"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean",
"description": "Whether the deletion was successful"
}
}
},
"encoding": "application/json"
},
"description": "Delete an eprint submission from the user's PDS"
}