# pub.chive.backlink.delete

> Published by [chive.pub](https://lexicon.garden/identity/did:plc:7natp5xae72bddaqlkef2t4e)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.backlink.delete)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.backlink.delete/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.backlink.delete/examples)

## Definitions

### `pub.chive.backlink.delete`

**Type**: `procedure`

Delete (mark as deleted) a backlink record. Internal/plugin use only. Requires authentication.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `sourceUri` | `string` (at-uri) | Yes | AT-URI of the source record to delete |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `success` | `boolean` | Yes | Whether the deletion was successful |

#### Errors

- **AuthenticationRequired**
- **NotFound**

## Raw Schema

```json
{
  "id": "pub.chive.backlink.delete",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
