Skip to content

Delete actor

given: "Alice" created an actor on "abel" called "Alice"

send.Alice.request.create_actor
{
  "base_url": "http://abel",
  "preferred_username": "Alice",
  "profile": {},
  "automatically_accept_followers": null,
  "name": null
}
receive.Alice.response.create_actor
{
  "attachment": null,
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://w3id.org/security/v1"
  ],
  "publicKey": {
    "id": "http://abel/actor/i3AIptnDFhxPi4IBR0BDJg#legacy-key-1",
    "owner": "http://abel/actor/i3AIptnDFhxPi4IBR0BDJg",
    "publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmx/6XQaqQbxSOuePxL1H\nwr23MT+gT2RWiW8iBwlRzCumV8cVHIS45pTjwMb484lzRX4uHjkoE0T148Tt1Tsr\nphUnBuAceAPWj/g/JtKAy9DPGYuw9DDhjTYdA2Gyjxm+Evl1qyOkdjA7+LV9HTle\nZOJ2/ZUNdsUl+aDYO8Wbt0KLgkuQ96jExMZafS7APMxkZ/h8o4YGQAnlrY1tfB+6\nNLEAmkjXZ7NPRo5SovFqhcmitvXaYEzol98f/uztxl+FxG9KqUf27ZehwivgKDg7\nJG8//lYOyR5sRsYMFKYI9DCxK35OjpgRRiNiiKIk/UQvjoeKVg1A4mQ7yNL+bLJS\nZwIDAQAB\n-----END PUBLIC KEY-----\n"
  },
  "id": "http://abel/actor/i3AIptnDFhxPi4IBR0BDJg",
  "type": "Person",
  "inbox": "http://abel/inbox/i0Nj7QiKG_VIuL3h1fg-VQ",
  "outbox": "http://abel/outbox/WOgYbD__NisLACeSpIjvkw",
  "followers": "http://abel/followers/4-8tu5QyB5y-oUPKEXKYmQ",
  "following": "http://abel/following/KPdt__SQtT_0C31o_vk0xQ",
  "preferredUsername": "Alice",
  "name": "Alice",
  "identifiers": [
    "acct:Alice@abel",
    "http://abel/actor/i3AIptnDFhxPi4IBR0BDJg"
  ],
  "endpoints": {
    "sharedInbox": "http://abel/shared_inbox"
  }
}

when: "Alice" deletes herself

send.Alice.trigger.delete_actor
{
  "actor": "http://abel/actor/i3AIptnDFhxPi4IBR0BDJg"
}
receive.Alice.outgoing
{
  "actor": "http://abel/actor/i3AIptnDFhxPi4IBR0BDJg",
  "event_type": "outgoing",
  "data": {
    "raw": {
      "@context": "https://www.w3.org/ns/activitystreams",
      "type": "Delete",
      "actor": "http://abel/actor/i3AIptnDFhxPi4IBR0BDJg",
      "to": [
        "https://www.w3.org/ns/activitystreams#Public"
      ],
      "cc": [
        "http://abel/followers/4-8tu5QyB5y-oUPKEXKYmQ",
        "http://abel/following/KPdt__SQtT_0C31o_vk0xQ"
      ],
      "published": "2025-02-23T08:45:37Z",
      "object": "http://abel/actor/i3AIptnDFhxPi4IBR0BDJg",
      "id": "http://abel/object/019531fb-bfdb-7152-bd7b-519bf97669f3"
    },
    "recipients": {
      "recipients": [
        "https://www.w3.org/ns/activitystreams#Public",
        "http://abel/following/KPdt__SQtT_0C31o_vk0xQ",
        "http://abel/followers/4-8tu5QyB5y-oUPKEXKYmQ"
      ],
      "public": true
    }
  }
}

when: One queries webfinger for "acct:Alice@abel"

then: No actor URI is returned