Skip to main content

Customer data model

This is the data structure of Customer entity when you are trying to create or update Customer in myKaarma.

Summary of the fields.

Parameter NameDescriptionRequired
customerKeyUnique identifier used by DMS to uniquely identify each customer, used by mykaarma to lookup customers in DMS databases for various purposes like update, deletion, booking appointment etc.No
firstNameCustomer's first name.Yes ( no only if isBusiness is set to true and company name is provided)
lastNameCustomer's last name.Yes ( no only if isBusiness is set to true and company name is provided)
companyName of the company if the customer is a business.No ( yes only if isBusiness is set to true )
isBusinessBoolean indicating if the customer is a business entity. Set true for company customers, fleet customers.No
preferredCommunicationRefers to the customer's preferred method of communication. Allowed values are text, phone , emailNo
addressesList of addresses associated with the customer.No
preferredLocaleCustomer's preferred language or locale. ( use en-us for English or fr-ca for French)No
emailsList of email addresses associated with the customer.No
phoneNumbersList of phone numbers associated with the customer.No
vehiclesList of vehicles owned by the customer.No
validateVinBoolean indicating if the vehicle's VIN should be validated. If set to true , invalid VIN vehicles would be rejected.No
searchForDuplicateBoolean indicating if the system should check for duplicate customers before creation. API Partners are expected to pass this parameter as falseNo
addresses.typeAn enumeration with possible values: COMMON, PRIMARY, BILLING which tells type of address. COMMON: Used when the primary and billing addresses are the same. PRIMARY: Represents the customer's home address. BILLING: Represents the customer's business address. Recommended: PRIMARY.Yes ( only if addresses is not empty )
addresses.addressTypeIndicates the type of address: use P for PRIMARY/COMMON type and B for BILLING type. Recommended: P.Yes ( only if addresses is not empty )
addresses.line1The first line of the customer's address.Yes ( only if addresses is not empty )
addresses.line2The second line of the customer's address, often used for apartment or suite numbers.No
addresses.zipThe postal code for the customer's address.No
addresses.countryThe country of the customer's address.Yes ( only if addresses is not empty )
addresses.isValidBoolean indicating if the address is valid. Default value true.No
addresses.isPreferredBoolean indicating if this is the customer's preferred address. Default value : false.No
addresses.stateThe state or region of the customer's address.Yes ( only if addresses is not empty )
emails.emailAddressThe customer's email address.Yes ( only if emails is not empty )
emails.labelDescribes the type of email. Allowed values are personal,home,work,other.Yes ( only if emails is not empty )
emails.okToEmailBoolean indicating if it's permissible to send emails to this address. Allowed values true/false.Yes
emails.isPreferredBoolean indicating if this is the customer's preferred email address. Allowed values true/false.Yes
phoneNumbers.phoneNumberThe customer's phone number, prefixed with +1 for the country code. example +11234567890Yes ( only if phones is not empty)
phoneNumbers.labelDescribes the type of phone. Allowed values are cell,business,home,work,other. If you have a primary phone number on your side, always send it with cell because cell is used for auto communication within myKaarmaYes ( only if phones is not empty)
phoneNumbers.okToCallBoolean indicating if it's permissible to call this number. Allowed values true/false.Yes
phoneNumbers.okToTextBoolean indicating if it's permissible to send text messages to this number. Allowed values true/false.Yes
phoneNumbers.isPreferredBoolean indicating if this is the customer's preferred phone number. Allowed values true/false.Yes