Docs
CRM

geni crm employments

Add, edit, and delete a person's employment history.

A person's employment history entries. Adding is person-scoped; edit and delete are by employment id. This is a pure verb group with no default action.

add

geni crm employments add per_01HX --json '{"companyName":"Acme","title":"CTO","startDate":"2022-01-01","isCurrent":true}'

Add an employment to a person. --json is { companyId? | companyName?, title?, startDate?, endDate?, isCurrent? }.

Arg / FlagNotes
<personId>Person id.
--json <body>Required. JSON employment.

update

geni crm employments update emp_01HX --json '{"endDate":"2026-06-01","isCurrent":false}'

Edit an employment. --json is the fields to change.

Arg / FlagNotes
<id>Employment id.
--json <body>Required. JSON fields to change.

delete

geni crm employments delete emp_01HX

Delete an employment.

ArgNotes
<id>Employment id.

On this page