CustomerClients

Customer client/contact data - end customers of the business.

Fields

Field Type Required Version Description
id guid Yes 1.0 Unique customer client identifier
customerId integer Yes 1.0 Reference to Customer
firstName string No 1.0 First name
lastName string No 1.0 Last name
email string No 1.0 Email address
phone string No 1.0 Phone number
birthDate date No 1.0 Date of birth
address string No 1.0 Street address
city string No 1.0 City
postalCode string No 1.0 Postal code
country string No 1.0 Country code
companyName string No 1.0 Company name (for B2B)
orgNumber string No 1.0 Organization number
created_at date No 1.0 Creation timestamp
active boolean No 1.0 Active status

Example - Individual Customer

{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "customerId": 12345,
  "firstName": "John",
  "lastName": "Smith",
  "email": "john.smith@email.com",
  "phone": "+47 123 45 678",
  "birthDate": "1985-06-15",
  "address": "Main Street 123",
  "city": "Oslo",
  "postalCode": "0150",
  "country": "NO",
  "companyName": null,
  "orgNumber": null,
  "created_at": "2023-01-15T10:00:00Z",
  "active": true
}

Example - Business Customer

{
  "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
  "customerId": 12345,
  "firstName": "Maria",
  "lastName": "Johnson",
  "email": "maria@company.no",
  "phone": "+47 987 65 432",
  "birthDate": null,
  "address": "Business Park 45",
  "city": "Bergen",
  "postalCode": "5020",
  "country": "NO",
  "companyName": "Tech Company AS",
  "orgNumber": "987654321",
  "created_at": "2022-06-01T08:00:00Z",
  "active": true
}