Request co-authorship on an existing eprint in another user's PDS
Input
application/jsonauthorIndex
integer
Required
Index of the author entry being claimed (0-based)
minimum: 0authorName
string
Required
Name of the author entry being claimed
maxLength: 200 bytesminLength: 1 bytesclaimantName
string
Required
Display name for the request
maxLength: 200 bytesminLength: 1 byteseprintOwnerDid
stringdid
Required
DID of the PDS owner
eprintUri
stringat-uri
Required
AT-URI of the eprint record
message
string
Optional
Optional message to PDS owner
maxLength: 1000 bytesOutput
application/jsonrequest
ref#coauthorRequest
Required
No description available.
Errors
AuthenticationRequired
NotFound
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": [
"eprintUri",
"eprintOwnerDid",
"claimantName",
"authorIndex",
"authorName"
],
"properties": {
"message": {
"type": "string",
"maxLength": 1000,
"description": "Optional message to PDS owner"
},
"eprintUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the eprint record"
},
"authorName": {
"type": "string",
"maxLength": 200,
"minLength": 1,
"description": "Name of the author entry being claimed"
},
"authorIndex": {
"type": "integer",
"minimum": 0,
"description": "Index of the author entry being claimed (0-based)"
},
"claimantName": {
"type": "string",
"maxLength": 200,
"minLength": 1,
"description": "Display name for the request"
},
"eprintOwnerDid": {
"type": "string",
"format": "did",
"description": "DID of the PDS owner"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "NotFound"
},
{
"name": "InvalidRequest"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"request"
],
"properties": {
"request": {
"ref": "#coauthorRequest",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Request co-authorship on an existing eprint in another user's PDS"
}