household_person:delete

Description: Delete a person link (NOT the person record) to an household by IDs.


Request Schema

{
  "payload": {
    "type": "household_person:delete",
    "household_id": 1, // OR household_import_id
    "person_id": 2 // OR person_import_id
  },
  "signature": "payload_ed25519_hex_signature",
  "source_public_key": "your_client_public_key"
}

Request Attributes

  • See global request attributes

  • payload.household_id - Integer - The household’s ID in the remote Arkipel community - Compulsory (unless payload.household_import_id is defined)

  • payload.person_id - Integer - The person’s ID in the remote Arkipel community - Compulsory (unless payload.person_import_id is defined)


  • payload.household_import_id - String - External household reference - Compulsory (unless payload.household_id is defined)

  • payload.person_import_id - String - External person reference - Compulsory (unless payload.person_id is defined)

Response Schema

{
  "source_public_key": "community_public_key",
  "source_site": {
    "protocol": "http",
    "fqdn": "arkipel.localhost:3000"
  },
  "created_at": "2025-11-13T20:52:49Z",
  "signature": "8b6392d5550605bd6ccddf9c21ebec470de4b44e4b4deb746076e37ab61c5346e07e7c7c7cebb5bbee41cdd92a476bcd3f02373d146ec165b31c31fc31c9ce0d",
  "payload": {
    "message_id": "6916452112f746b2b4cf48c1",
    "type": "household_person:delete"
  }
}