Skip to content

Inventory Suppliers

Inventory supplier data.

Fields

FieldTypeRequiredVersionDescription
idguidYes1.1.2Unique supplier identifier
namestringYes1.1.2Supplier name
customer_idintegerYes1.1.2Reference to Customer
emailstringNo1.1.2Supplier email
phonestringNo1.1.2Supplier phone
addressstringNo1.1.2Supplier address
orgNumberstringNo1.1.2Organization number
accountNumberstringNo1.1.2Bank account number
notesstringNo1.1.2Supplier notes
activebooleanNo1.1.2Supplier active status

Example

json
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "Fresh Fish AS",
  "customer_id": 12345,
  "email": "orders@freshfish.no",
  "phone": "+47 123 45 678",
  "address": "Harbor Street 10, 0150 Oslo",
  "orgNumber": "123456789",
  "accountNumber": "1234.56.78901",
  "notes": "Delivery Tue/Thu, order by 14:00 day before",
  "active": true
}

Example - Multiple Suppliers

json
[
  {
    "id": "supplier-fish-id",
    "name": "Fresh Fish AS",
    "customer_id": 12345,
    "email": "orders@freshfish.no",
    "phone": "+47 123 45 678",
    "address": "Harbor Street 10, Oslo",
    "orgNumber": "123456789",
    "accountNumber": null,
    "notes": "Delivery Tue/Thu",
    "active": true
  },
  {
    "id": "supplier-produce-id",
    "name": "Green Farms",
    "customer_id": 12345,
    "email": "orders@greenfarms.no",
    "phone": "+47 234 56 789",
    "address": "Farm Road 5, Vestfold",
    "orgNumber": "234567890",
    "accountNumber": null,
    "notes": "Organic produce, delivery Mon/Wed/Fri",
    "active": true
  },
  {
    "id": "supplier-beverages-id",
    "name": "Beverage Distributors",
    "customer_id": 12345,
    "email": "orders@bevdist.no",
    "phone": "+47 345 67 890",
    "address": "Industrial Zone 20, Oslo",
    "orgNumber": "345678901",
    "accountNumber": null,
    "notes": "Min order 5000 NOK",
    "active": true
  }
]
  • Customer - Parent customer/tenant
  • InventoryItem - Default supplier for items
  • InventoryTransaction - Purchase transactions from supplier

Technical documentation for partners and integrators