Employee Data Models

Represents employee entity in accounting systems

Model IDEvent Data KeyDescription
accounting_employee_infoinfo

Employee Info

Model ID: accounting_employee_info

Name Type Description

id

String

Unique ID of the employee as defined in accounting app.

firstName

String

lastName

String

linkedCompanyIds

List[String]

Company Id associated with employee.

emails

List[Email]

Please refer to Email Model

phones

List[Phone]

Please refer to Phone Model

status

Enum

One of
ACTIVE
INACTIVE
NOT_SPECIFIED

gender

Enum

One of
MALE
FEMALE
NOT_SPECIFIED
NON_BINARY

employmentType

Enum

One of
FULL_TIME
CONTRACT
NOT_SPECIFIED




Event Data Example


{
      "info": {
      "id": "9547",
      "firstName": "Alice",
      "lastName": "Dev",
      "companyId": "3",
      "linkedCompanyIds": null,
      "emails": [
        {
          "type": "WORK",
          "email": "[email protected]"
        }
      ],
      "phones": [
        {
          "type": "HOME",
          "phoneNumber": "6754986754"
        },
        {
          "type": "PERSONAL",
          "phoneNumber": "7865453245"
        },
        {
          "type": "PERSONAL",
          "phoneNumber": "6754342312"
        },
        {
          "type": "WORK",
          "phoneNumber": "8675452342"
        }
      ],
      "status": "ACTIVE",
      "gender": "MALE",
      "employmentType": "FULL_TIME"
    }

}