Represents a person in accounting i.e. customer or vendor
Model ID | Event Data Key | Description |
---|---|---|
accounting_contact_info | info | |
accounting_contact_addresses | addresses | |
accounting_contact_phones | phones | |
accounting_contact_emails | emails | |
accounting_contact_users | users | List of persons associated with contact |
Contact Info
Model ID: accounting_contact_info
Name | Type | Description |
---|---|---|
|
|
|
|
|
|
|
|
One of |
|
|
|
|
|
|
|
|
[ |
|
|
|
|
|
|
|
|
List of company Ids associated with object. (Applicable for multi subsidiary apps like Netsuite.) |
|
|
One of among Currency Codes (ISO 4217) like- |
|
|
|
|
|
Social profile and website related URLs. |
Contact Addresses
Model ID: accounting_contact_addresses
Name | Type | Description |
---|---|---|
addresses | List[Address] | Please refer to Address Model |
Contact Phones
Model ID: accounting_contact_phones
Name | Type | Description |
---|---|---|
phones | List[Phone] | Please refer to Phone Model |
Contact Emails
Model ID: accounting_contact_emails
Name | Type | Description |
---|---|---|
emails | List[Email] | Please refer to Email Model |
Contact Users
Name | Type | Description |
---|---|---|
accounting_contact_users | List[User] | Please refer to User Model |
Event Data Example
{
"info": {
"id": "02d528f1-89f2-4086-bbf2-6becd6ec407a",
"name": "Updesh Test Accounting",
"contactType": "CUSTOMER",
"createdAt": "2024-05-23T12:42:34Z",
"updatedAt": "2024-05-23T12:42:34Z",
"status": "ACTIVE",
"accountNumber": "1-030303032",
"companyId": "ac19c8f9-a901-4db3-bef1-5aaca2a7c15a",
"currency": "USD",
"taxNumber": "GST-12339",
"urls": [
"https://getknit.dev",
"https://xero.accounting.com"
]
},
"emails": [
{
"type": "WORK",
"email": "[email protected]"
}
],
"phones": [
{
"type": "PERSONAL",
"phoneNumber": "91819119292"
},
{
"type": "WORK",
"phoneNumber": "9838783908"
}
],
"addresses": [
{
"addressLine1": "72/1A Church Street",
"addressLine2": "Texas USA",
"city": "Texas",
"state": "Atlanta",
"country": "USA",
"zipCode": "20203939",
"addressType": "BILLING"
},
{
"addressLine1": "72/1A",
"addressLine2": "USA",
"city": "Texas",
"state": "Atlanta",
"country": "USA",
"zipCode": "20203939",
"addressType": "SHIPPING"
}
],
"users": [
{
"id": "1920",
"email": "[email protected]"
},
{
"id": "102",
"email": "[email protected]"
}
]
}