Represents employee entity in accounting systems
Model ID | Event Data Key | Description |
---|---|---|
accounting_employee_info | info |
Employee Info
Model ID: accounting_employee_info
Name | Type | Description |
---|---|---|
|
|
Unique ID of the employee as defined in accounting app. |
|
|
|
|
|
|
|
|
Company Id associated with employee. |
|
|
Please refer to Email Model |
|
|
Please refer to Phone Model |
|
|
One of |
|
|
One of |
|
|
One of |
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"
}
}