Skip to content

BusinessUnits

Business unit represents a legal/organizational entity within a customer. Typically maps to a company or brand within a group.

Storage Location

{customer_id}-business_unit.json

Fields

FieldTypeRequiredDescription
idintegerYesUnique business unit identifier.
namestringYesBusiness unit name.
customer_idintegerYesReference to Customer.

Example

json
{
  "id": 12500,
  "customer_id": 10352,
  "name": "Brød Bakerne AS (Kanelsnurren, Brød Bakerne)"
}

Example - Multiple Business Units

json
[
  {
    "id": 12500,
    "customer_id": 10352,
    "name": "Brød Bakerne AS (Kanelsnurren, Brød Bakerne)"
  },
  {
    "id": 12721,
    "customer_id": 10352,
    "name": "Brød Bakerne AS (Steam)"
  },
  {
    "id": 12720,
    "customer_id": 10352,
    "name": "Mjøl "
  },
  {
    "id": 12660,
    "customer_id": 10352,
    "name": "Encore Norge AS"
  }
]

Technical documentation for partners and integrators