Record a download event from a search result (strong positive relevance signal)
Input
Encoding
application/jsonimpressionId
string
Required
UUID of the search impression
uri
stringat-uri
Required
AT-URI of the downloaded eprint
Output
Encoding
application/jsonsuccess
boolean
Required
Whether the download was recorded
Errors
InvalidRequest
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": [
"impressionId",
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the downloaded eprint"
},
"impressionId": {
"type": "string",
"description": "UUID of the search impression"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "InvalidRequest"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean",
"description": "Whether the download was recorded"
}
}
},
"encoding": "application/json"
},
"description": "Record a download event from a search result (strong positive relevance signal)"
}