Remove contact channel
well_remove_contact_channelRemove a contact channel from a company or person.
Wraps the resource-scoped DELETE endpoints (DELETE /v1/{companies,people}/:id/{emails,phones,web-links,locations}/:channelId).
Pass channel_id = the UUID of the specific channel row to remove (NOT the parent). Find it by reading the parent with well_query_records and selecting the channel's id field.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent | Yes | Parent record type: company or person | |
| channel | Yes | Channel to remove: email | phone | web_link | location | |
| parent_id | Yes | UUID of the parent company or person | |
| channel_id | Yes | UUID of the specific channel row to remove | |
| workspace_id | No | Target workspace. Omit when the token authorizes one workspace. Required when it authorizes several — a write lands in exactly one workspace and this call would not say which. | |
| idempotency_key | No | Optional client-supplied key. A retried write with the same key returns the original result instead of re-applying the operation. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| error | No | ||
| parent | No | ||
| channel | No | ||
| success | Yes |