remove_party_address_by_id
Remove a specific address from a party using its unique address ID. Atomic and reversible; re-add via add_party_address if needed.
Instructions
Remove one address entry from a party by its row id. Atomic and reversible — no confirm: true gate (re-add with add_party_address). Discover the id via get_party. Idempotent on retry: response is {removed: true, alreadyRemoved: false, partyId, addressId, party} on a fresh remove or {removed: true, alreadyRemoved: true, partyId, addressId} if the row was already gone.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| partyId | No | ||
| addressId | No | Capsule's id for the address row. Read it from get_party (each entry in addresses carries an id). |