# geni crm contact-points (/cli/crm/contact-points)



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 [#add]

```sh
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 [#update]

```sh
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 [#delete]

```sh
geni crm contact-points delete cp_01HX
```

Delete a contact point.

| Arg    | Notes             |
| ------ | ----------------- |
| `<id>` | Contact-point id. |
