remove_party_website_by_id
Remove a single website entry from a party using its unique ID. Returns removed status and party details. Idempotent—safe to retry.
Instructions
Remove one website entry from a party by its row id. Atomic and reversible — no confirm: true gate (re-add with add_party_website). Discover the id via get_party. Idempotent on retry: response is {removed: true, alreadyRemoved: false, partyId, websiteId, party} on a fresh remove or {removed: true, alreadyRemoved: true, partyId, websiteId} if the row was already gone.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| partyId | Yes | ||
| websiteId | Yes | Capsule's id for the website row. Read it from get_party (each entry in websites carries an id). |