Delete (mark as deleted) a backlink record. Internal/plugin use only. Requires authentication.
Input
Encoding
application/jsonsourceUri
stringat-uri
Required
AT-URI of the source record to delete
Output
Encoding
application/jsonsuccess
boolean
Required
Whether the deletion was successful
Errors
AuthenticationRequired
NotFound
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"
],
"properties": {
"sourceUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the source record to delete"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "NotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean",
"description": "Whether the deletion was successful"
}
}
},
"encoding": "application/json"
},
"description": "Delete (mark as deleted) a backlink record. Internal/plugin use only. Requires authentication."
}