Create a backlink record. Internal/plugin use only. Requires authentication.
Input
Encoding
application/jsoncontext
string
Optional
Optional context about the backlink
maxLength: 500 bytessourceType
string
Required
Type of the source record
sourceUri
stringat-uri
Required
AT-URI of the source record
targetUri
stringat-uri
Required
AT-URI of the target eprint
Output
Encoding
application/jsonSchema#backlink
Errors
AuthenticationRequired
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": [
"sourceUri",
"sourceType",
"targetUri"
],
"properties": {
"context": {
"type": "string",
"maxLength": 500,
"description": "Optional context about the backlink"
},
"sourceUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the source record"
},
"targetUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the target eprint"
},
"sourceType": {
"type": "string",
"description": "Type of the source record",
"knownValues": [
"cosmik.collection",
"leaflet.list",
"whitewind.blog",
"bluesky.post",
"bluesky.embed",
"other"
]
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "InvalidRequest"
}
],
"output": {
"schema": {
"ref": "#backlink",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Create a backlink record. Internal/plugin use only. Requires authentication."
}