WinFactor Docs

Organization

Your organization profile — connector self-configuration

GET /organization

The calling key's organization. Use it to self-configure connectors (currency formatting, unit display, locale for messages).

curl -H "Authorization: Bearer $WF_API_KEY" https://app.winfactor.app/api/v1/organization
{
  "id": "org_2abc…",
  "name": "Window Works Inc",
  "slug": "window-works",
  "locale": "en",
  "unitSystem": "imperial",
  "currency": "USD",
  "plan": "pro",
  "externalPricingEnabled": true
}
FieldNotes
localeDefault messaging locale (en, de, nl)
unitSystemmetric or imperial — drives how you should display the millimetre dimensions returned everywhere
currencyISO 4217 code applied to all monetary values
planEffective plan tier (free, essential, pro, enterprise)
externalPricingEnabledWhether the live pricing write-back loop is on — PUT …/adjustments returns 403 forbidden_plan when false

On this page