Create person
well_create_personCreate a new person (contact) in the current workspace.
Use this tool when the user asks to add, create, or register a new contact, employee, or person.
REQUIRED: first_name OPTIONAL: last_name, job_title
After creation, enrichment runs asynchronously in the background.
Returns { success: true, person_id, full_name } on success, or { success: false, error } on failure.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| No | |||
| phone | No | ||
| job_title | No | Job title | |
| last_name | No | Last name (optional) | |
| first_name | Yes | First name (required) | |
| 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 | ||
| success | Yes | ||
| full_name | No | ||
| person_id | No |