CRM
geni crm contact-points
Add, edit, and delete a person's emails and phone numbers.
A person's emails and phone numbers. Adding is person-scoped; edit and delete are by contact-point id. This is a pure verb group with no default action.
add
geni crm contact-points add per_01HX --json '{"kind":"email","value":"ada@acme.com","isPrimary":true}'Add a contact point to a person. --json is { kind: email|phone|..., value, status?, isPrimary? }.
| Arg / Flag | Notes |
|---|---|
<personId> | Person id. |
--json <body> | Required. JSON contact point. |
update
geni crm contact-points update cp_01HX --json '{"isPrimary":false}'Edit a contact point. --json is the fields to change.
| Arg / Flag | Notes |
|---|---|
<id> | Contact-point id. |
--json <body> | Required. JSON fields to change. |
delete
geni crm contact-points delete cp_01HXDelete a contact point.
| Arg | Notes |
|---|---|
<id> | Contact-point id. |