Person data

Attributes

AttributeRequired?Default
external_idYes
ssn
date_of_birth
preferred_first_name
first_nameYes
middle_initial
last_nameYes
email
work_email
self_onboarding



Sample JSON

 {
  "idempotency_key": "bcfc9744-0ab3-4ef3-ab0d-e728255d659c",
  "batch_action" : "create",
  "batch": [
    {
      "entity_type": "employee",
      "person": {
        "external_id": "employee-abc-123",
        "first_name": "Alice",
        "last_name": "Smith",
        "ssn": "xxx-xx-xxxx",
        "date_of_birth": "1990-05-15",
        "preferred_first_name": "Liza",
        "middle_initial": "J",
        "email": "[email protected]",
        "work_email": "[email protected]",
        "self_onboarding": true
      }
    }
  ]
}

Check here to see how this looks in the context of a full batch example.