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
}| Field | Notes |
|---|---|
locale | Default messaging locale (en, de, nl) |
unitSystem | metric or imperial — drives how you should display the millimetre dimensions returned everywhere |
currency | ISO 4217 code applied to all monetary values |
plan | Effective plan tier (free, essential, pro, enterprise) |
externalPricingEnabled | Whether the live pricing write-back loop is on — PUT …/adjustments returns 403 forbidden_plan when false |